Browse Source

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)
Nan Xiao 3 years ago
parent
commit
ad72484909
1 changed files with 1 additions and 1 deletions
  1. 1 1
      demos/evp/aesccm.c

+ 1 - 1
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();