aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTheo Buehler <tb@openbsd.org>2023-07-05 05:40:45 -0600
committerTheo Buehler <tb@openbsd.org>2023-07-05 07:08:24 -0600
commit186134f7c5578fe979fb8f18a96c84fe04e4413e (patch)
tree549c46ba7cf6c8e2fcc22303588da6672d0f7f5e
parent0c3849a0550ed9c6f242e2da09bb16a3910d754f (diff)
downloadportable-186134f7c5578fe979fb8f18a96c84fe04e4413e.tar.gz
portable-186134f7c5578fe979fb8f18a96c84fe04e4413e.tar.bz2
portable-186134f7c5578fe979fb8f18a96c84fe04e4413e.zip
Some ECDH and ECDSA files were (re)moved
-rw-r--r--crypto/CMakeLists.txt6
-rw-r--r--crypto/Makefile.am8
2 files changed, 5 insertions, 9 deletions
diff --git a/crypto/CMakeLists.txt b/crypto/CMakeLists.txt
index 84eb894..302352b 100644
--- a/crypto/CMakeLists.txt
+++ b/crypto/CMakeLists.txt
@@ -490,14 +490,12 @@ set(
490 ec/ecp_oct.c 490 ec/ecp_oct.c
491 ec/ecp_smpl.c 491 ec/ecp_smpl.c
492 ec/ecx_methods.c 492 ec/ecx_methods.c
493 ecdh/ecdh_kdf.c 493 ecdh/ecdh.c
494 ecdh/ech_err.c 494 ecdh/ech_err.c
495 ecdh/ech_key.c
496 ecdh/ech_lib.c 495 ecdh/ech_lib.c
497 ecdsa/ecs_asn1.c 496 ecdsa/ecdsa.c
498 ecdsa/ecs_err.c 497 ecdsa/ecs_err.c
499 ecdsa/ecs_lib.c 498 ecdsa/ecs_lib.c
500 ecdsa/ecs_ossl.c
501 engine/eng_all.c 499 engine/eng_all.c
502 engine/eng_cnf.c 500 engine/eng_cnf.c
503 engine/eng_ctrl.c 501 engine/eng_ctrl.c
diff --git a/crypto/Makefile.am b/crypto/Makefile.am
index 667352f..258da67 100644
--- a/crypto/Makefile.am
+++ b/crypto/Makefile.am
@@ -599,17 +599,15 @@ libcrypto_la_SOURCES += ec/ecx_methods.c
599noinst_HEADERS += ec/ec_local.h 599noinst_HEADERS += ec/ec_local.h
600 600
601# ecdh 601# ecdh
602libcrypto_la_SOURCES += ecdh/ecdh_kdf.c 602libcrypto_la_SOURCES += ecdh/ecdh.c
603libcrypto_la_SOURCES += ecdh/ech_err.c 603libcrypto_la_SOURCES += ecdh/ech_err.c
604libcrypto_la_SOURCES += ecdh/ech_key.c
605libcrypto_la_SOURCES += ecdh/ech_lib.c 604libcrypto_la_SOURCES += ecdh/ech_lib.c
606 605
607# ecdsa 606# ecdsa
608libcrypto_la_SOURCES += ecdsa/ecs_asn1.c 607libcrypto_la_SOURCES += ecdsa/ecdsa.c
609libcrypto_la_SOURCES += ecdsa/ecs_err.c 608libcrypto_la_SOURCES += ecdsa/ecs_err.c
610libcrypto_la_SOURCES += ecdsa/ecs_lib.c 609libcrypto_la_SOURCES += ecdsa/ecs_lib.c
611libcrypto_la_SOURCES += ecdsa/ecs_ossl.c 610noinst_HEADERS += ecdsa/ecdsa_local.h
612noinst_HEADERS += ecdsa/ecs_local.h
613 611
614# engine 612# engine
615libcrypto_la_SOURCES += engine/eng_all.c 613libcrypto_la_SOURCES += engine/eng_all.c