uncomment argchk in camellia_setup()

This commit is contained in:
Steffen Jaeckel 2014-07-17 11:32:52 +02:00
parent 155a54ba40
commit 48bd6702aa

View File

@ -213,8 +213,8 @@ int camellia_setup(const unsigned char *key, int keylen, int num_rounds, symmetr
int x;
ulong64 A, B;
// LTC_ARGCHK(key != NULL);
// LTC_ARGCHK(skey != NULL);
LTC_ARGCHK(key != NULL);
LTC_ARGCHK(skey != NULL);
/* Valid sizes (in bytes) are 16, 24, 32 */
if (keylen != 16 && keylen != 24 && keylen != 32) {