diff options
author | Theo Buehler <tb@openbsd.org> | 2024-03-28 23:26:00 -0600 |
---|---|---|
committer | Theo Buehler <tb@openbsd.org> | 2024-03-28 23:26:00 -0600 |
commit | fd57ce50769f9a8490456b18ff24938c58072e18 (patch) | |
tree | 2d29e71b34c167f95bcd3b882f07d4e850318915 /crypto | |
parent | 1d6c6c1cbda79a42049acd7fb0556bdbddd74d93 (diff) | |
download | portable-fd57ce50769f9a8490456b18ff24938c58072e18.tar.gz portable-fd57ce50769f9a8490456b18ff24938c58072e18.tar.bz2 portable-fd57ce50769f9a8490456b18ff24938c58072e18.zip |
A concentration of ideas has happened
Diffstat (limited to 'crypto')
-rw-r--r-- | crypto/CMakeLists.txt | 6 | ||||
-rw-r--r-- | crypto/Makefile.am | 6 |
2 files changed, 2 insertions, 10 deletions
diff --git a/crypto/CMakeLists.txt b/crypto/CMakeLists.txt index fdc0089..4c50bc3 100644 --- a/crypto/CMakeLists.txt +++ b/crypto/CMakeLists.txt | |||
@@ -494,11 +494,7 @@ set( | |||
494 | hmac/hm_ameth.c | 494 | hmac/hm_ameth.c |
495 | hmac/hm_pmeth.c | 495 | hmac/hm_pmeth.c |
496 | hmac/hmac.c | 496 | hmac/hmac.c |
497 | idea/i_cbc.c | 497 | idea/idea.c |
498 | idea/i_cfb64.c | ||
499 | idea/i_ecb.c | ||
500 | idea/i_ofb64.c | ||
501 | idea/i_skey.c | ||
502 | kdf/hkdf_evp.c | 498 | kdf/hkdf_evp.c |
503 | kdf/kdf_err.c | 499 | kdf/kdf_err.c |
504 | lhash/lhash.c | 500 | lhash/lhash.c |
diff --git a/crypto/Makefile.am b/crypto/Makefile.am index d6a551b..9e8b5e6 100644 --- a/crypto/Makefile.am +++ b/crypto/Makefile.am | |||
@@ -692,11 +692,7 @@ libcrypto_la_SOURCES += hmac/hmac.c | |||
692 | noinst_HEADERS += hmac/hmac_local.h | 692 | noinst_HEADERS += hmac/hmac_local.h |
693 | 693 | ||
694 | # idea | 694 | # idea |
695 | libcrypto_la_SOURCES += idea/i_cbc.c | 695 | libcrypto_la_SOURCES += idea/idea.c |
696 | libcrypto_la_SOURCES += idea/i_cfb64.c | ||
697 | libcrypto_la_SOURCES += idea/i_ecb.c | ||
698 | libcrypto_la_SOURCES += idea/i_ofb64.c | ||
699 | libcrypto_la_SOURCES += idea/i_skey.c | ||
700 | noinst_HEADERS += idea/idea_local.h | 696 | noinst_HEADERS += idea/idea_local.h |
701 | 697 | ||
702 | # kdf | 698 | # kdf |