summaryrefslogtreecommitdiffstats
path: root/demos/cipher/aesgcm.c
diff options
context:
space:
mode:
Diffstat (limited to 'demos/cipher/aesgcm.c')
-rw-r--r--demos/cipher/aesgcm.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/demos/cipher/aesgcm.c b/demos/cipher/aesgcm.c
index 64fa8184f1..40465b269c 100644
--- a/demos/cipher/aesgcm.c
+++ b/demos/cipher/aesgcm.c
@@ -67,7 +67,7 @@ static const unsigned char gcm_tag[] = {
OSSL_LIB_CTX *libctx = NULL;
const char *propq = NULL;
-int aes_gcm_encrypt(void)
+static int aes_gcm_encrypt(void)
{
int ret = 0;
EVP_CIPHER_CTX *ctx;
@@ -144,7 +144,7 @@ err:
return ret;
}
-int aes_gcm_decrypt(void)
+static int aes_gcm_decrypt(void)
{
int ret = 0;
EVP_CIPHER_CTX *ctx;