Exemplo n.º 1
0
void testAes256Cbc() {
	testAlgorithm("testAes256Cbc", algorithm_aes256, ciphermode_cbc);
}
Exemplo n.º 2
0
// /* Example: use of testAlgorithm
void testFourSort2() {
  void foursort();
  testAlgorithm("Running foursort ...", foursort);
}
Exemplo n.º 3
0
void testAes256Ecb() {
	testAlgorithm("testAes256Ecb", algorithm_aes256, ciphermode_ecb);
}
Exemplo n.º 4
0
void testAes256Ofb() {
	testAlgorithm("testAes256Ofb", algorithm_aes256, ciphermode_ofb);
}
Exemplo n.º 5
0
void testAes192Ofb() {
	testAlgorithm("testAes192Ofb", algorithm_aes192, ciphermode_ofb);
}
Exemplo n.º 6
0
void testAes192Cbc() {
	testAlgorithm("testAes192Cbc", algorithm_aes192, ciphermode_cbc);
}
Exemplo n.º 7
0
void testAes192Ecb() {
	testAlgorithm("testAes192Ecb", algorithm_aes192, ciphermode_ecb);
}
Exemplo n.º 8
0
void testAes128Cfb() {
	testAlgorithm("testAes128Cfb", algorithm_aes128, ciphermode_cfb);
}
Exemplo n.º 9
0
void testDesCbc() {
	testAlgorithm("testDesCbc", algorithm_des, ciphermode_cbc);
}
Exemplo n.º 10
0
void testDesOfb() {
	testAlgorithm("testDesOfb", algorithm_des, ciphermode_ofb);
}
Exemplo n.º 11
0
void testDesCfb() {
	testAlgorithm("testDesCfb", algorithm_des, ciphermode_ecb);
}