Example #1
0
func BenchmarkAES192(b *testing.B) {
	test.BlockCipherBench(b, 24, NewAES)
}
Example #2
0
func BenchmarkAES256(b *testing.B) {
	test.BlockCipherBench(b, 32, NewAES)
}
Example #3
0
func BenchmarkAES128(b *testing.B) {
	test.BlockCipherBench(b, 16, NewAES)
}