summaryrefslogtreecommitdiffstats
path: root/engines
diff options
context:
space:
mode:
authorJitendraLulla <lullajd@yahoo.com>2017-11-15 06:43:48 +0530
committerMatt Caswell <matt@openssl.org>2017-12-08 10:39:52 +0000
commit7e8a5e30902b3e3f10aeaae8dcde283eb7224abc (patch)
treed5d856700e756e1a24a3c4f7b32599dddbf252a4 /engines
parenta3d7fd2837ab7341e58862df95af8532f23d4d51 (diff)
make get_cipher_handle static
Reviewed-by: Paul Dale <paul.dale@oracle.com> Reviewed-by: Matt Caswell <matt@openssl.org> (Merged from https://github.com/openssl/openssl/pull/4717)
Diffstat (limited to 'engines')
-rw-r--r--engines/e_afalg.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/e_afalg.c b/engines/e_afalg.c
index 3e49a27775..79a81293a8 100644
--- a/engines/e_afalg.c
+++ b/engines/e_afalg.c
@@ -80,7 +80,7 @@ static int afalg_destroy(ENGINE *e);
static int afalg_init(ENGINE *e);
static int afalg_finish(ENGINE *e);
const EVP_CIPHER *afalg_aes_cbc(int nid);
-cbc_handles *get_cipher_handle(int nid);
+static cbc_handles *get_cipher_handle(int nid);
static int afalg_ciphers(ENGINE *e, const EVP_CIPHER **cipher,
const int **nids, int nid);
static int afalg_cipher_init(EVP_CIPHER_CTX *ctx, const unsigned char *key,