From 50e7b8e3a51beeb992068b20edea932e63a73b3c Mon Sep 17 00:00:00 2001 From: tb <> Date: Sat, 31 Aug 2024 10:42:21 +0000 Subject: Zap HMAC_Init Long deprecated, last users have been fixed. ok beck jsing --- src/lib/libcrypto/hmac/hmac.h | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'src/lib/libcrypto/hmac/hmac.h') diff --git a/src/lib/libcrypto/hmac/hmac.h b/src/lib/libcrypto/hmac/hmac.h index 0f39009c9d..6f29972aad 100644 --- a/src/lib/libcrypto/hmac/hmac.h +++ b/src/lib/libcrypto/hmac/hmac.h @@ -1,4 +1,4 @@ -/* $OpenBSD: hmac.h,v 1.19 2024/07/09 07:57:57 tb Exp $ */ +/* $OpenBSD: hmac.h,v 1.20 2024/08/31 10:42:21 tb Exp $ */ /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) * All rights reserved. * @@ -82,8 +82,6 @@ HMAC_CTX *HMAC_CTX_new(void); void HMAC_CTX_free(HMAC_CTX *ctx); int HMAC_CTX_reset(HMAC_CTX *ctx); -int HMAC_Init(HMAC_CTX *ctx, const void *key, int len, const EVP_MD *md) - __attribute__ ((__bounded__(__buffer__, 2, 3))); int HMAC_Init_ex(HMAC_CTX *ctx, const void *key, int len, const EVP_MD *md, ENGINE *impl) __attribute__ ((__bounded__(__buffer__, 2, 3))); -- cgit v1.2.3-55-g6feb