summaryrefslogtreecommitdiffstats
path: root/demos/cipher/aesccm.c
diff options
context:
space:
mode:
Diffstat (limited to 'demos/cipher/aesccm.c')
-rw-r--r--demos/cipher/aesccm.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/demos/cipher/aesccm.c b/demos/cipher/aesccm.c
index 3c4b9e7445..49a054f9d3 100644
--- a/demos/cipher/aesccm.c
+++ b/demos/cipher/aesccm.c
@@ -68,7 +68,7 @@ OSSL_LIB_CTX *libctx = NULL;
const char *propq = NULL;
-int aes_ccm_encrypt(void)
+static int aes_ccm_encrypt(void)
{
int ret = 0;
EVP_CIPHER_CTX *ctx;
@@ -155,7 +155,7 @@ err:
return ret;
}
-int aes_ccm_decrypt(void)
+static int aes_ccm_decrypt(void)
{
int ret = 0;
EVP_CIPHER_CTX *ctx;