diff options
author | Theo Buehler <tb@cvs.openbsd.org> | 2024-03-02 09:30:22 +0000 |
---|---|---|
committer | Theo Buehler <tb@cvs.openbsd.org> | 2024-03-02 09:30:22 +0000 |
commit | 75826478db33dd67b4e8246398042a0a8e1210cc (patch) | |
tree | df8eb3735876989c52c5a5c8038ce4909dbda387 /lib/libcrypto/hidden/openssl/cmac.h | |
parent | a2a4fd283e1f93064e05a39b367a23ddfb059c2b (diff) |
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
Diffstat (limited to 'lib/libcrypto/hidden/openssl/cmac.h')
-rw-r--r-- | lib/libcrypto/hidden/openssl/cmac.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/libcrypto/hidden/openssl/cmac.h b/lib/libcrypto/hidden/openssl/cmac.h index cefdb4f6e5b..1e802aa887e 100644 --- a/lib/libcrypto/hidden/openssl/cmac.h +++ b/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 <beck@openbsd.org> * @@ -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 */ |