From: Nan Xiao Date: Fri, 16 Apr 2021 01:46:26 +0000 (+0800) Subject: Fix typo in aesccm.c X-Git-Tag: openssl-3.0.0-alpha15~78 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=ad72484909abbcb088c52305894b87604ef58de8;p=thirdparty%2Fopenssl.git Fix typo in aesccm.c CLA: trivial Reviewed-by: Matt Caswell Reviewed-by: Paul Dale (Merged from https://github.com/openssl/openssl/pull/14894) --- diff --git a/demos/evp/aesccm.c b/demos/evp/aesccm.c index 5045837c74f..f073e5ec3d9 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();