summaryrefslogtreecommitdiffstats
path: root/demos
diff options
context:
space:
mode:
authorNan Xiao <nan@chinadtrace.org>2021-04-16 09:46:26 +0800
committerPauli <ppzgs1@gmail.com>2021-04-18 17:21:41 +1000
commitad72484909abbcb088c52305894b87604ef58de8 (patch)
treea66bccff56af248f1ef84de5d0893610c0d5b2e2 /demos
parent44c75ba67df9588636649416e6fb120a9fc27489 (diff)
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.c2
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();