From: Iceman Date: Sun, 25 Jun 2017 22:52:09 +0000 (+0200) Subject: Update aes.c (#336) X-Git-Tag: v3.1.0~203 X-Git-Url: http://git.zerfleddert.de/cgi-bin/gitweb.cgi/proxmark3-svn/commitdiff_plain/d8e61a30047ab910c64d62c5882a97c2fcb53c94?hp=7f2114d8459d9a78be7218bed064420ba657c8e9 Update aes.c (#336) FIX: coverity scan - improper use of sizeof --- diff --git a/armsrc/aes.c b/armsrc/aes.c index a199d04b..0a3f893d 100644 --- a/armsrc/aes.c +++ b/armsrc/aes.c @@ -1152,7 +1152,7 @@ int main() if( AesCtxIni(&ctx, iv, key, KEY128, CBC) < 0) printf("init error\n"); - if (AesEncrypt(&ctx, databuf, databuf, sizeof databuf) < 0) + if (AesEncrypt(&ctx, databuf, databuf, sizeof(databuf) ) < 0) printf("error in encryption\n"); // initialize context and decrypt cipher at other end @@ -1160,11 +1160,11 @@ int main() if( AesCtxIni(&ctx, iv, key, KEY128, CBC) < 0) printf("init error\n"); - if (AesDecrypt(&ctx, databuf, databuf, sizeof databuf) < 0) + if (AesDecrypt(&ctx, databuf, databuf, sizeof(databuf) ) < 0) printf("error in decryption\n"); printf("%s\n", databuf); return 0; } -#endif \ No newline at end of file +#endif