Skip to content

Commit

Permalink
addressed review comments
Browse files Browse the repository at this point in the history
  • Loading branch information
miyazakh committed Jan 11, 2022
1 parent 0e6ba49 commit f0f65f4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions wolfcrypt/src/port/Renesas/renesas_sce_aes.c
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@ WOLFSSL_LOCAL int wc_sce_AesGcmEncrypt(struct Aes* aes, byte* out,
iv_l = iv;
ivSz_l = ivSz;
} else {
WOLFSSL_MSG("AES kes for SCE is not set.");
WOLFSSL_MSG("AES key for SCE is not set.");
ret = -1;
}

Expand Down Expand Up @@ -365,7 +365,7 @@ WOLFSSL_LOCAL int wc_sce_AesGcmDecrypt(struct Aes* aes, byte* out,
iv_l = iv;
ivSz_l = ivSz;
} else {
WOLFSSL_MSG("AES kes for SCE is not set.");
WOLFSSL_MSG("AES key for SCE is not set.");
ret = -1;
}

Expand Down

0 comments on commit f0f65f4

Please sign in to comment.