提交 3a7141df 编写于 作者: R Richard Levitte

Make all private functions in e_afalg.c static

Reviewed-by: NRich Salz <rsalz@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/5270)
上级 7d3901f6
...@@ -79,7 +79,7 @@ static int afalg_create_sk(afalg_ctx *actx, const char *ciphertype, ...@@ -79,7 +79,7 @@ static int afalg_create_sk(afalg_ctx *actx, const char *ciphertype,
static int afalg_destroy(ENGINE *e); static int afalg_destroy(ENGINE *e);
static int afalg_init(ENGINE *e); static int afalg_init(ENGINE *e);
static int afalg_finish(ENGINE *e); static int afalg_finish(ENGINE *e);
const EVP_CIPHER *afalg_aes_cbc(int nid); static const EVP_CIPHER *afalg_aes_cbc(int nid);
static 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, static int afalg_ciphers(ENGINE *e, const EVP_CIPHER **cipher,
const int **nids, int nid); const int **nids, int nid);
...@@ -195,7 +195,7 @@ static int afalg_setup_async_event_notification(afalg_aio *aio) ...@@ -195,7 +195,7 @@ static int afalg_setup_async_event_notification(afalg_aio *aio)
return 1; return 1;
} }
int afalg_init_aio(afalg_aio *aio) static int afalg_init_aio(afalg_aio *aio)
{ {
int r = -1; int r = -1;
...@@ -215,8 +215,8 @@ int afalg_init_aio(afalg_aio *aio) ...@@ -215,8 +215,8 @@ int afalg_init_aio(afalg_aio *aio)
return 1; return 1;
} }
int afalg_fin_cipher_aio(afalg_aio *aio, int sfd, unsigned char *buf, static int afalg_fin_cipher_aio(afalg_aio *aio, int sfd, unsigned char *buf,
size_t len) size_t len)
{ {
int r; int r;
int retry = 0; int retry = 0;
...@@ -658,7 +658,7 @@ static cbc_handles *get_cipher_handle(int nid) ...@@ -658,7 +658,7 @@ static cbc_handles *get_cipher_handle(int nid)
} }
} }
const EVP_CIPHER *afalg_aes_cbc(int nid) static const EVP_CIPHER *afalg_aes_cbc(int nid)
{ {
cbc_handles *cipher_handle = get_cipher_handle(nid); cbc_handles *cipher_handle = get_cipher_handle(nid);
if (cipher_handle->_hidden == NULL if (cipher_handle->_hidden == NULL
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册