From 1bb8c1f69667e03cca121e9baa096e7d3b5a8ad9 Mon Sep 17 00:00:00 2001 From: toddouska Date: Thu, 22 Dec 2011 13:08:17 -0800 Subject: [PATCH] remove extra aes ctr test --- ctaocrypt/test/test.c | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/ctaocrypt/test/test.c b/ctaocrypt/test/test.c index 431cb72c5..3ad363358 100644 --- a/ctaocrypt/test/test.c +++ b/ctaocrypt/test/test.c @@ -1088,18 +1088,6 @@ int aes_test() if (memcmp(cipher, ctrCipher, AES_BLOCK_SIZE*4)) return -67; - - /* - AesCtrEncrypt(&enc, cipher, ctrPlain + AES_BLOCK_SIZE, AES_BLOCK_SIZE); - AesCtrEncrypt(&dec, plain, cipher, AES_BLOCK_SIZE); - - if (memcmp(plain, ctrPlain + AES_BLOCK_SIZE, AES_BLOCK_SIZE)) - return -68; - - if (memcmp(cipher, ctrCipher + AES_BLOCK_SIZE, AES_BLOCK_SIZE)) - return -69; - */ - } #endif /* CYASSL_AES_COUNTER */