From 27e901828ab79e35b7a6b736f5050679265ae63d Mon Sep 17 00:00:00 2001 From: tb <> Date: Sat, 2 Mar 2024 09:30:21 +0000 Subject: Remove CMAC_resume() While it is a neat design detail of CMAC that you can resume it after having finalized it, nothing uses this functionality and it adds some gross things such as retaining intermediate secrets in the CMAC ctx. Once this is gone, we can simplify the CMAC code a bit. ok jsing --- src/lib/libcrypto/hidden/openssl/cmac.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'src/lib/libcrypto/hidden/openssl/cmac.h') diff --git a/src/lib/libcrypto/hidden/openssl/cmac.h b/src/lib/libcrypto/hidden/openssl/cmac.h index cefdb4f6e5..1e802aa887 100644 --- a/src/lib/libcrypto/hidden/openssl/cmac.h +++ b/src/lib/libcrypto/hidden/openssl/cmac.h @@ -1,4 +1,4 @@ -/* $OpenBSD: cmac.h,v 1.1 2023/07/08 14:27:14 beck Exp $ */ +/* $OpenBSD: cmac.h,v 1.2 2024/03/02 09:30:21 tb Exp $ */ /* * Copyright (c) 2023 Bob Beck * @@ -33,6 +33,5 @@ LCRYPTO_USED(CMAC_CTX_copy); LCRYPTO_USED(CMAC_Init); LCRYPTO_USED(CMAC_Update); LCRYPTO_USED(CMAC_Final); -LCRYPTO_USED(CMAC_resume); #endif /* _LIBCRYPTO_CMAC_H */ -- cgit v1.2.3-55-g6feb