提交 dc0099e1 编写于 作者: R Richard Levitte

Cleanup: rename HMAC_CTX_init to HMAC_CTX_reset

Reviewed-by: NRich Salz <rsalz@openssl.org>
上级 e0a3a803
...@@ -173,7 +173,7 @@ HMAC_CTX *HMAC_CTX_new(void) ...@@ -173,7 +173,7 @@ HMAC_CTX *HMAC_CTX_new(void)
{ {
HMAC_CTX *ctx = (HMAC_CTX *)OPENSSL_zalloc(sizeof(HMAC_CTX)); HMAC_CTX *ctx = (HMAC_CTX *)OPENSSL_zalloc(sizeof(HMAC_CTX));
if (ctx) if (ctx)
if (!HMAC_CTX_init(ctx)) { if (!HMAC_CTX_reset(ctx)) {
HMAC_CTX_free(ctx); HMAC_CTX_free(ctx);
ctx = NULL; ctx = NULL;
} }
...@@ -201,7 +201,7 @@ void HMAC_CTX_free(HMAC_CTX *ctx) ...@@ -201,7 +201,7 @@ void HMAC_CTX_free(HMAC_CTX *ctx)
} }
} }
int HMAC_CTX_init(HMAC_CTX *ctx) int HMAC_CTX_reset(HMAC_CTX *ctx)
{ {
hmac_ctx_cleanup(ctx); hmac_ctx_cleanup(ctx);
if (ctx->i_ctx == NULL) if (ctx->i_ctx == NULL)
......
...@@ -70,7 +70,7 @@ extern "C" { ...@@ -70,7 +70,7 @@ extern "C" {
size_t HMAC_size(HMAC_CTX *e); size_t HMAC_size(HMAC_CTX *e);
HMAC_CTX *HMAC_CTX_new(void); HMAC_CTX *HMAC_CTX_new(void);
int HMAC_CTX_init(HMAC_CTX *ctx); int HMAC_CTX_reset(HMAC_CTX *ctx);
void HMAC_CTX_free(HMAC_CTX *ctx); void HMAC_CTX_free(HMAC_CTX *ctx);
#ifdef OPENSSL_USE_DEPRECATED #ifdef OPENSSL_USE_DEPRECATED
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册