aboutsummaryrefslogtreecommitdiff
path: root/crypto
diff options
context:
space:
mode:
authorTheo Buehler <tb@openbsd.org>2024-12-14 13:49:05 -0700
committerTheo Buehler <tb@openbsd.org>2024-12-14 13:59:08 -0700
commit08207128cece13bd849c4c2206ab0b2a8338e790 (patch)
tree24fc5b9b6da803d92e56692fcdb5186e5ebec42c /crypto
parent7b5be5b0e5dc238d95303d5efbae9620ad85834b (diff)
downloadportable-08207128cece13bd849c4c2206ab0b2a8338e790.tar.gz
portable-08207128cece13bd849c4c2206ab0b2a8338e790.tar.bz2
portable-08207128cece13bd849c4c2206ab0b2a8338e790.zip
Link mlkem to build
Diffstat (limited to 'crypto')
-rw-r--r--crypto/CMakeLists.txt3
-rw-r--r--crypto/Makefile.am6
2 files changed, 9 insertions, 0 deletions
diff --git a/crypto/CMakeLists.txt b/crypto/CMakeLists.txt
index f9ac149..7b3439d 100644
--- a/crypto/CMakeLists.txt
+++ b/crypto/CMakeLists.txt
@@ -416,6 +416,8 @@ set(
416 lhash/lhash.c 416 lhash/lhash.c
417 md4/md4.c 417 md4/md4.c
418 md5/md5.c 418 md5/md5.c
419 mlkem/mlkem768.c
420 mlkem/mlkem1024.c
419 modes/cbc128.c 421 modes/cbc128.c
420 modes/ccm128.c 422 modes/ccm128.c
421 modes/cfb128.c 423 modes/cfb128.c
@@ -753,6 +755,7 @@ target_include_directories(crypto_obj
753 hidden 755 hidden
754 hmac 756 hmac
755 lhash 757 lhash
758 mlkem
756 modes 759 modes
757 ocsp 760 ocsp
758 pkcs12 761 pkcs12
diff --git a/crypto/Makefile.am b/crypto/Makefile.am
index 0d86eed..06fde29 100644
--- a/crypto/Makefile.am
+++ b/crypto/Makefile.am
@@ -16,6 +16,7 @@ AM_CPPFLAGS += -I$(top_srcdir)/crypto/err
16AM_CPPFLAGS += -I$(top_srcdir)/crypto/evp 16AM_CPPFLAGS += -I$(top_srcdir)/crypto/evp
17AM_CPPFLAGS += -I$(top_srcdir)/crypto/hmac 17AM_CPPFLAGS += -I$(top_srcdir)/crypto/hmac
18AM_CPPFLAGS += -I$(top_srcdir)/crypto/lhash 18AM_CPPFLAGS += -I$(top_srcdir)/crypto/lhash
19AM_CPPFLAGS += -I$(top_srcdir)/crypto/mlkem
19AM_CPPFLAGS += -I$(top_srcdir)/crypto/modes 20AM_CPPFLAGS += -I$(top_srcdir)/crypto/modes
20AM_CPPFLAGS += -I$(top_srcdir)/crypto/ocsp 21AM_CPPFLAGS += -I$(top_srcdir)/crypto/ocsp
21AM_CPPFLAGS += -I$(top_srcdir)/crypto/pkcs12 22AM_CPPFLAGS += -I$(top_srcdir)/crypto/pkcs12
@@ -697,6 +698,11 @@ libcrypto_la_SOURCES += md4/md4.c
697# md5 698# md5
698libcrypto_la_SOURCES += md5/md5.c 699libcrypto_la_SOURCES += md5/md5.c
699 700
701# mlkem
702libcrypto_la_SOURCES += mlkem/mlkem768.c
703libcrypto_la_SOURCES += mlkem/mlkem1024.c
704noinst_HEADERS += mlkem/mlkem_internal.h
705
700# modes 706# modes
701libcrypto_la_SOURCES += modes/cbc128.c 707libcrypto_la_SOURCES += modes/cbc128.c
702libcrypto_la_SOURCES += modes/ccm128.c 708libcrypto_la_SOURCES += modes/ccm128.c