File: Benchmarks.hs

package info (click to toggle)
haskell-cipher-aes 0.2.8-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 268 kB
  • ctags: 309
  • sloc: ansic: 1,800; haskell: 908; makefile: 3
file content (7 lines) | stat: -rw-r--r-- 223 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
import Crypto.Cipher.Benchmarks
import Crypto.Cipher.AES (AES128, AES192, AES256)

main = defaultMain
    [GBlockCipher (undefined :: AES128)
    ,GBlockCipher (undefined :: AES192)
    ,GBlockCipher (undefined :: AES256)]