Merge pull request #600 from stenslae/fenrir/f6720-caam-seco-iv-size

F-6720: IV Size
pull/602/head
JacobBarthelmeh 2026-07-15 15:43:27 -06:00 committed by GitHub
commit f4dfc164f7
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View File

@ -95,7 +95,7 @@ int main(int argc, char** argv)
unsigned int keyId;
unsigned int keyStoreId;
const byte in[] = "test message to encrypt";
const byte iv[] = {0,1,2,3,4,5,6,7,8,9,10,11,12};
const byte iv[AES_BLOCK_SIZE] = {0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15};
if (argc == 4) {
if (XSTRNCMP(argv[1], "1", 1) == 0) {

View File

@ -95,7 +95,7 @@ int main(int argc, char** argv)
unsigned int keyId;
unsigned int keyStoreId;
const byte in[] = "test message to encrypt";
const byte iv[] = {0,1,2,3,4,5,6,7,8,9,10,11,12};
const byte iv[AES_BLOCK_SIZE] = {0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15};
if (argc == 4) {
if (XSTRNCMP(argv[1], "1", 1) == 0) {