intel / tinycrypt

tinycrypt is a library of cryptographic algorithms with a focus on small, simple implementation.
Other
436 stars 154 forks source link

test case error #46

Open liano1987 opened 3 years ago

liano1987 commented 3 years ago

IS this is an error: tests/test_cbc_mode.c at line 135: length = ((unsigned int) sizeof(encrypted)); Should it be the following code: length = ((unsigned int) sizeof(decrypted));

utzig commented 3 years ago

Good catch, you are correct!