diff options
author | Theo Buehler <tb@cvs.openbsd.org> | 2024-08-29 20:21:54 +0000 |
---|---|---|
committer | Theo Buehler <tb@cvs.openbsd.org> | 2024-08-29 20:21:54 +0000 |
commit | 2b32adbe86854b12fd887787ac2f779c24ba173a (patch) | |
tree | a8d8035a190f833559dcb80d27e1c0ae8cce5918 /lib | |
parent | e79d98b0d431ee3af597c85a8fd773a518a42f9e (diff) |
HMAC_Init() is dead. Long live HMAC_Init_ex()
Diffstat (limited to 'lib')
-rw-r--r-- | lib/libcrypto/man/HMAC.3 | 19 |
1 files changed, 2 insertions, 17 deletions
diff --git a/lib/libcrypto/man/HMAC.3 b/lib/libcrypto/man/HMAC.3 index dc32a111bed..a515014fcab 100644 --- a/lib/libcrypto/man/HMAC.3 +++ b/lib/libcrypto/man/HMAC.3 @@ -1,4 +1,4 @@ -.\" $OpenBSD: HMAC.3,v 1.22 2024/07/21 08:36:43 tb Exp $ +.\" $OpenBSD: HMAC.3,v 1.23 2024/08/29 20:21:53 tb Exp $ .\" full merge up to: OpenSSL crypto/hmac a528d4f0 Oct 27 13:40:11 2015 -0400 .\" selective merge up to: OpenSSL man3/HMAC b3696a55 Sep 2 09:35:50 2017 -0400 .\" @@ -52,7 +52,7 @@ .\" ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED .\" OF THE POSSIBILITY OF SUCH DAMAGE. .\" -.Dd $Mdocdate: July 21 2024 $ +.Dd $Mdocdate: August 29 2024 $ .Dt HMAC 3 .Os .Sh NAME @@ -61,7 +61,6 @@ .Nm HMAC_CTX_reset , .Nm HMAC_CTX_free , .Nm HMAC_Init_ex , -.Nm HMAC_Init , .Nm HMAC_Update , .Nm HMAC_Final , .Nm HMAC_CTX_copy , @@ -100,13 +99,6 @@ .Fa "ENGINE *engine" .Fc .Ft int -.Fo HMAC_Init -.Fa "HMAC_CTX *ctx" -.Fa "const void *key" -.Fa "int key_len" -.Fa "const EVP_MD *md" -.Fc -.Ft int .Fo HMAC_Update .Fa "HMAC_CTX *ctx" .Fa "const unsigned char *data" @@ -229,12 +221,6 @@ argument is always ignored and passing .Dv NULL is recommended. .Pp -.Fn HMAC_Init -is a deprecated wrapper around -.Fn HMAC_Init_ex -which performs no longer useful extra initialization in -some circumstances. -.Pp .Fn HMAC_Update can be called repeatedly with chunks of the message to be authenticated .Pq Fa len No bytes at Fa data . @@ -302,7 +288,6 @@ or 0 on error. RFC 2104 .Sh HISTORY .Fn HMAC , -.Fn HMAC_Init , .Fn HMAC_Update , .Fn HMAC_Final , and |