diff options
| author | Theo Buehler <tb@openbsd.org> | 2024-12-14 13:49:05 -0700 |
|---|---|---|
| committer | Theo Buehler <tb@openbsd.org> | 2024-12-14 13:59:08 -0700 |
| commit | 08207128cece13bd849c4c2206ab0b2a8338e790 (patch) | |
| tree | 24fc5b9b6da803d92e56692fcdb5186e5ebec42c /crypto | |
| parent | 7b5be5b0e5dc238d95303d5efbae9620ad85834b (diff) | |
| download | portable-08207128cece13bd849c4c2206ab0b2a8338e790.tar.gz portable-08207128cece13bd849c4c2206ab0b2a8338e790.tar.bz2 portable-08207128cece13bd849c4c2206ab0b2a8338e790.zip | |
Link mlkem to build
Diffstat (limited to 'crypto')
| -rw-r--r-- | crypto/CMakeLists.txt | 3 | ||||
| -rw-r--r-- | crypto/Makefile.am | 6 |
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 | |||
| 16 | AM_CPPFLAGS += -I$(top_srcdir)/crypto/evp | 16 | AM_CPPFLAGS += -I$(top_srcdir)/crypto/evp |
| 17 | AM_CPPFLAGS += -I$(top_srcdir)/crypto/hmac | 17 | AM_CPPFLAGS += -I$(top_srcdir)/crypto/hmac |
| 18 | AM_CPPFLAGS += -I$(top_srcdir)/crypto/lhash | 18 | AM_CPPFLAGS += -I$(top_srcdir)/crypto/lhash |
| 19 | AM_CPPFLAGS += -I$(top_srcdir)/crypto/mlkem | ||
| 19 | AM_CPPFLAGS += -I$(top_srcdir)/crypto/modes | 20 | AM_CPPFLAGS += -I$(top_srcdir)/crypto/modes |
| 20 | AM_CPPFLAGS += -I$(top_srcdir)/crypto/ocsp | 21 | AM_CPPFLAGS += -I$(top_srcdir)/crypto/ocsp |
| 21 | AM_CPPFLAGS += -I$(top_srcdir)/crypto/pkcs12 | 22 | AM_CPPFLAGS += -I$(top_srcdir)/crypto/pkcs12 |
| @@ -697,6 +698,11 @@ libcrypto_la_SOURCES += md4/md4.c | |||
| 697 | # md5 | 698 | # md5 |
| 698 | libcrypto_la_SOURCES += md5/md5.c | 699 | libcrypto_la_SOURCES += md5/md5.c |
| 699 | 700 | ||
| 701 | # mlkem | ||
| 702 | libcrypto_la_SOURCES += mlkem/mlkem768.c | ||
| 703 | libcrypto_la_SOURCES += mlkem/mlkem1024.c | ||
| 704 | noinst_HEADERS += mlkem/mlkem_internal.h | ||
| 705 | |||
| 700 | # modes | 706 | # modes |
| 701 | libcrypto_la_SOURCES += modes/cbc128.c | 707 | libcrypto_la_SOURCES += modes/cbc128.c |
| 702 | libcrypto_la_SOURCES += modes/ccm128.c | 708 | libcrypto_la_SOURCES += modes/ccm128.c |
