The branch master has been updated
via ad72484909abbcb088c52305894b87604ef58de8 (commit)
from 44c75ba67df9588636649416e6fb120a9fc27489 (commit)
- Log -----------------------------------------------------------------
commit ad72484909abbcb088c52305894b87604ef58de8
Author: Nan Xiao <[email protected]>
Date: Fri Apr 16 09:46:26 2021 +0800
Fix typo in aesccm.c
CLA: trivial
Reviewed-by: Matt Caswell <[email protected]>
Reviewed-by: Paul Dale <[email protected]>
(Merged from https://github.com/openssl/openssl/pull/14894)
-----------------------------------------------------------------------
Summary of changes:
demos/evp/aesccm.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/demos/evp/aesccm.c b/demos/evp/aesccm.c
index 5045837c74..f073e5ec3d 100644
--- a/demos/evp/aesccm.c
+++ b/demos/evp/aesccm.c
@@ -89,7 +89,7 @@ void aes_ccm_decrypt(void)
EVP_CIPHER_CTX *ctx;
int outlen, tmplen, rv;
unsigned char outbuf[1024];
- printf("AES CCM Derypt:\n");
+ printf("AES CCM Decrypt:\n");
printf("Ciphertext:\n");
BIO_dump_fp(stdout, ccm_ct, sizeof(ccm_ct));
ctx = EVP_CIPHER_CTX_new();