Remove useless assert comments

address: https://github.com/RIOT-OS/RIOT/pull/824#issuecomment-36426297
This commit is contained in:
Ludwig Ortmann 2014-03-01 16:27:18 +01:00
parent c51c135192
commit 6089de5ef2

View File

@ -961,7 +961,6 @@ int aes_encrypt(cipher_context_t *context, uint8_t *plainBlock,
int r; int r;
#endif /* ?FULL_UNROLL */ #endif /* ?FULL_UNROLL */
//assert(plainBlock && cipherBlock && key); is this really needed?
rk = key->rd_key; rk = key->rd_key;
/* /*
@ -1222,7 +1221,6 @@ int aes_decrypt(cipher_context_t *context, uint8_t *cipherBlock,
int r; int r;
#endif /* ?FULL_UNROLL */ #endif /* ?FULL_UNROLL */
// assert(cipherBlock && plainBlock && key); // nedded? see above
rk = key->rd_key; rk = key->rd_key;
/* /*