1import Crypto.Cipher.Benchmarks
2import Crypto.Cipher.AES (AES128, AES192, AES256)
3
4main = defaultMain
5    [GBlockCipher (undefined :: AES128)
6    ,GBlockCipher (undefined :: AES192)
7    ,GBlockCipher (undefined :: AES256)]
8