diff options
author | Nan Xiao <nan@chinadtrace.org> | 2021-04-16 03:46:26 +0200 |
---|---|---|
committer | Pauli <ppzgs1@gmail.com> | 2021-04-18 09:21:41 +0200 |
commit | ad72484909abbcb088c52305894b87604ef58de8 (patch) | |
tree | a66bccff56af248f1ef84de5d0893610c0d5b2e2 /demos | |
parent | apps/cmp.c: Fix TLS hostname checking in case -server provides more than host... (diff) | |
download | openssl-ad72484909abbcb088c52305894b87604ef58de8.tar.xz openssl-ad72484909abbcb088c52305894b87604ef58de8.zip |
Fix typo in aesccm.c
CLA: trivial
Reviewed-by: Matt Caswell <matt@openssl.org>
Reviewed-by: Paul Dale <pauli@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/14894)
Diffstat (limited to 'demos')
-rw-r--r-- | demos/evp/aesccm.c | 2 |
1 files changed, 1 insertions, 1 deletions
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(); |