summaryrefslogtreecommitdiff
path: root/src/lib/libcrypto/Makefile
diff options
context:
space:
mode:
authorbeck <>2024-12-13 00:17:18 +0000
committerbeck <>2024-12-13 00:17:18 +0000
commitee07c6bc022a26df0601ff3acffd488777cb32fa (patch)
tree96342312b2f330ea5c3d02d4c28c8c50ece4ee37 /src/lib/libcrypto/Makefile
parent6d94ba19b3aad3bfdeca665a771586c1a68a3f66 (diff)
downloadopenbsd-ee07c6bc022a26df0601ff3acffd488777cb32fa.tar.gz
openbsd-ee07c6bc022a26df0601ff3acffd488777cb32fa.tar.bz2
openbsd-ee07c6bc022a26df0601ff3acffd488777cb32fa.zip
Add ML-KEM 1024 from BoringSSL
Changes include conversion from C++, basic KNF, then adaptation to use our sha3 functions for sha3 and shake instead of the BorinSSL version. This Adds units tests to run against BoringSSL and NIST test vectors. The future public API is the same as Boring's - but is not yet exposed pending making bytestring.h public (which will happen separately) and a minor bump Currently this will just ensure we build and run regress. ok tb@ to get it into the tree and massage from there.
Diffstat (limited to 'src/lib/libcrypto/Makefile')
-rw-r--r--src/lib/libcrypto/Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/lib/libcrypto/Makefile b/src/lib/libcrypto/Makefile
index f43b09d176..ab2349103d 100644
--- a/src/lib/libcrypto/Makefile
+++ b/src/lib/libcrypto/Makefile
@@ -1,4 +1,4 @@
1# $OpenBSD: Makefile,v 1.229 2024/12/13 00:03:57 beck Exp $ 1# $OpenBSD: Makefile,v 1.230 2024/12/13 00:17:17 beck Exp $
2 2
3LIB= crypto 3LIB= crypto
4LIBREBUILD=y 4LIBREBUILD=y
@@ -374,6 +374,7 @@ SRCS+= md5.c
374 374
375# mlkem/ 375# mlkem/
376SRCS+= mlkem768.c 376SRCS+= mlkem768.c
377SRCS+= mlkem1024.c
377 378
378# modes/ 379# modes/
379SRCS+= cbc128.c 380SRCS+= cbc128.c