diff options
Diffstat (limited to 'src/lib/libcrypto/aes/aes_x86core.c')
-rw-r--r-- | src/lib/libcrypto/aes/aes_x86core.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/lib/libcrypto/aes/aes_x86core.c b/src/lib/libcrypto/aes/aes_x86core.c index c7a2e0a9a6..c604fa876f 100644 --- a/src/lib/libcrypto/aes/aes_x86core.c +++ b/src/lib/libcrypto/aes/aes_x86core.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: aes_x86core.c,v 1.7 2014/10/28 07:35:58 jsg Exp $ */ | 1 | /* $OpenBSD: aes_x86core.c,v 1.8 2015/02/10 09:46:30 miod Exp $ */ |
2 | /** | 2 | /** |
3 | * rijndael-alg-fst.c | 3 | * rijndael-alg-fst.c |
4 | * | 4 | * |
@@ -40,7 +40,6 @@ | |||
40 | # define NDEBUG | 40 | # define NDEBUG |
41 | # endif | 41 | # endif |
42 | #endif | 42 | #endif |
43 | #include <assert.h> | ||
44 | 43 | ||
45 | #include <stdlib.h> | 44 | #include <stdlib.h> |
46 | #include <openssl/aes.h> | 45 | #include <openssl/aes.h> |
@@ -661,7 +660,6 @@ AES_encrypt(const unsigned char *in, unsigned char *out, const AES_KEY *key) | |||
661 | u32 s0, s1, s2, s3, t[4]; | 660 | u32 s0, s1, s2, s3, t[4]; |
662 | int r; | 661 | int r; |
663 | 662 | ||
664 | assert(in && out && key); | ||
665 | rk = key->rd_key; | 663 | rk = key->rd_key; |
666 | 664 | ||
667 | /* | 665 | /* |
@@ -881,7 +879,6 @@ AES_decrypt(const unsigned char *in, unsigned char *out, const AES_KEY *key) | |||
881 | u32 s0, s1, s2, s3, t[4]; | 879 | u32 s0, s1, s2, s3, t[4]; |
882 | int r; | 880 | int r; |
883 | 881 | ||
884 | assert(in && out && key); | ||
885 | rk = key->rd_key; | 882 | rk = key->rd_key; |
886 | 883 | ||
887 | /* | 884 | /* |