From 827d17f0210e6721be9834220be1e31b75b0b272 Mon Sep 17 00:00:00 2001 From: Matt Caswell Date: Mon, 20 Jun 2016 09:28:25 +0100 Subject: [PATCH] Add some documentation for missing HMAC functions This includes the newly added HMAC_CTX_get_md(). Reviewed-by: Tim Hudson --- doc/crypto/HMAC.pod | 39 ++++++++++++++++++++++++++++++++------- 1 file changed, 32 insertions(+), 7 deletions(-) diff --git a/doc/crypto/HMAC.pod b/doc/crypto/HMAC.pod index cabb4930b4..fdafec86b9 100644 --- a/doc/crypto/HMAC.pod +++ b/doc/crypto/HMAC.pod @@ -2,7 +2,18 @@ =head1 NAME -HMAC, HMAC_CTX_new, HMAC_CTX_reset, HMAC_CTX_free, HMAC_Init, HMAC_Init_ex, HMAC_Update, HMAC_Final - HMAC message authentication code +HMAC, +HMAC_CTX_new, +HMAC_CTX_reset, +HMAC_CTX_free, +HMAC_Init, +HMAC_Init_ex, +HMAC_Update, +HMAC_Final, +HMAC_CTX_copy, +HMAC_CTX_set_flags, +HMAC_CTX_get_md +- HMAC message authentication code =head1 SYNOPSIS @@ -22,6 +33,10 @@ HMAC, HMAC_CTX_new, HMAC_CTX_reset, HMAC_CTX_free, HMAC_Init, HMAC_Init_ex, HMAC void HMAC_CTX_free(HMAC_CTX *ctx); + int HMAC_CTX_copy(HMAC_CTX *dctx, HMAC_CTX *sctx); + void HMAC_CTX_set_flags(HMAC_CTX *ctx, unsigned long flags); + const EVP_MD *HMAC_CTX_get_md(const HMAC_CTX *ctx); + Deprecated: #if OPENSSL_API_COMPAT < 0x10100000L @@ -78,6 +93,14 @@ be authenticated (B bytes at B). HMAC_Final() places the message authentication code in B, which must have space for the hash function output. +HMAC_CTX_copy() copies all of the internal state from B into B. + +HMAC_CTX_set_flags() applies the specified flags to the internal EVP_MD_CTXs. +These flags have the same meaning as for L. + +HMAC_CTX_get_md() returns the EVP_MD that has previously been set for the +supplied HMAC_CTX. + =head1 RETURN VALUES HMAC() returns a pointer to the message authentication code or NULL if @@ -86,10 +109,11 @@ an error occurred. HMAC_CTX_new() returns a pointer to a new B on success or B if an error occurred. -HMAC_CTX_reset(), HMAC_Init_ex(), HMAC_Update() and HMAC_Final() return 1 -for success or 0 if an error occurred. +HMAC_CTX_reset(), HMAC_Init_ex(), HMAC_Update(), HMAC_Final() and +HMAC_CTX_copy() return 1 for success or 0 if an error occurred. -HMAC_CTX_free() do not return values. +HMAC_CTX_get_md() return the EVP_MD previously set for the supplied HMAC_CTX or +NULL if no EVP_MD has been set. =head1 CONFORMING TO @@ -101,11 +125,12 @@ L, L =head1 HISTORY -HMAC_CTX_init() was replaced with HMAC_CTX_reset() in OpenSSL versions 1.1. +HMAC_CTX_init() was replaced with HMAC_CTX_reset() in OpenSSL versions 1.1.0. -HMAC_CTX_cleanup() existed in OpenSSL versions before 1.1. +HMAC_CTX_cleanup() existed in OpenSSL versions before 1.1.0. -HMAC_CTX_new() and HMAC_CTX_free() are new in OpenSSL version 1.1. +HMAC_CTX_new(), HMAC_CTX_free() and HMAC_CTX_get_md() are new in OpenSSL version +1.1.0. HMAC_Init_ex(), HMAC_Update() and HMAC_Final() did not return values in versions of OpenSSL before 1.0.0. -- 2.25.1