summaryrefslogtreecommitdiffstats
path: root/demos/cipher/aeskeywrap.c
diff options
context:
space:
mode:
Diffstat (limited to 'demos/cipher/aeskeywrap.c')
-rw-r--r--demos/cipher/aeskeywrap.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/demos/cipher/aeskeywrap.c b/demos/cipher/aeskeywrap.c
index 3207b85663..4d5df4cd98 100644
--- a/demos/cipher/aeskeywrap.c
+++ b/demos/cipher/aeskeywrap.c
@@ -53,7 +53,7 @@ static const unsigned char wrap_ct[] = {
OSSL_LIB_CTX *libctx = NULL;
const char *propq = NULL;
-int aes_wrap_encrypt(void)
+static int aes_wrap_encrypt(void)
{
int ret = 0;
EVP_CIPHER_CTX *ctx;
@@ -111,7 +111,7 @@ err:
return ret;
}
-int aes_wrap_decrypt(void)
+static int aes_wrap_decrypt(void)
{
int ret = 0;
EVP_CIPHER_CTX *ctx;