diff options
-rw-r--r-- | crypto/CMakeLists.txt | 3 | ||||
-rw-r--r-- | crypto/Makefile.am | 6 | ||||
-rwxr-xr-x | update.sh | 3 |
3 files changed, 11 insertions, 1 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 |
@@ -127,10 +127,11 @@ copy_hdrs() { | |||
127 | 127 | ||
128 | copy_hdrs $libcrypto_src "stack/stack.h lhash/lhash.h stack/safestack.h | 128 | copy_hdrs $libcrypto_src "stack/stack.h lhash/lhash.h stack/safestack.h |
129 | ossl_typ.h err/err.h crypto.h comp/comp.h x509/x509.h buffer/buffer.h | 129 | ossl_typ.h err/err.h crypto.h comp/comp.h x509/x509.h buffer/buffer.h |
130 | bytestring/bytestring.h | ||
130 | objects/objects.h asn1/asn1.h asn1/posix_time.h bn/bn.h ec/ec.h ecdsa/ecdsa.h | 131 | objects/objects.h asn1/asn1.h asn1/posix_time.h bn/bn.h ec/ec.h ecdsa/ecdsa.h |
131 | ecdh/ecdh.h rsa/rsa.h sha/sha.h x509/x509_vfy.h pkcs7/pkcs7.h pem/pem.h | 132 | ecdh/ecdh.h rsa/rsa.h sha/sha.h x509/x509_vfy.h pkcs7/pkcs7.h pem/pem.h |
132 | hkdf/hkdf.h hmac/hmac.h rand/rand.h md5/md5.h | 133 | hkdf/hkdf.h hmac/hmac.h rand/rand.h md5/md5.h |
133 | x509/x509v3.h conf/conf.h ocsp/ocsp.h | 134 | x509/x509v3.h conf/conf.h mlkem/mlkem.h ocsp/ocsp.h |
134 | aes/aes.h modes/modes.h asn1/asn1t.h bf/blowfish.h | 135 | aes/aes.h modes/modes.h asn1/asn1t.h bf/blowfish.h |
135 | bio/bio.h cast/cast.h cmac/cmac.h cms/cms.h des/des.h dh/dh.h | 136 | bio/bio.h cast/cast.h cmac/cmac.h cms/cms.h des/des.h dh/dh.h |
136 | dsa/dsa.h engine/engine.h ui/ui.h pkcs12/pkcs12.h ts/ts.h | 137 | dsa/dsa.h engine/engine.h ui/ui.h pkcs12/pkcs12.h ts/ts.h |