diff options
| author | Theo Buehler <tb@openbsd.org> | 2023-04-11 06:11:08 -0600 |
|---|---|---|
| committer | Theo Buehler <tb@openbsd.org> | 2023-04-11 06:11:08 -0600 |
| commit | 418d7adf8a782b12517c26eaaa6fcdf044c15ff2 (patch) | |
| tree | b238c3e9c0a18134a17375639a8188d3253d38ce | |
| parent | f79a103b256764a3f8e2900cd3bc1ff7dbe54e8b (diff) | |
| download | portable-418d7adf8a782b12517c26eaaa6fcdf044c15ff2.tar.gz portable-418d7adf8a782b12517c26eaaa6fcdf044c15ff2.tar.bz2 portable-418d7adf8a782b12517c26eaaa6fcdf044c15ff2.zip | |
Update for mod_sqrt and sha1 changes
| -rw-r--r-- | crypto/CMakeLists.txt | 5 | ||||
| -rw-r--r-- | crypto/Makefile.am | 5 |
2 files changed, 4 insertions, 6 deletions
diff --git a/crypto/CMakeLists.txt b/crypto/CMakeLists.txt index a364e86..c2a6ee0 100644 --- a/crypto/CMakeLists.txt +++ b/crypto/CMakeLists.txt | |||
| @@ -370,6 +370,7 @@ set( | |||
| 370 | bn/bn_kron.c | 370 | bn/bn_kron.c |
| 371 | bn/bn_lib.c | 371 | bn/bn_lib.c |
| 372 | bn/bn_mod.c | 372 | bn/bn_mod.c |
| 373 | bn/bn_mod_sqrt.c | ||
| 373 | bn/bn_mont.c | 374 | bn/bn_mont.c |
| 374 | bn/bn_mpi.c | 375 | bn/bn_mpi.c |
| 375 | bn/bn_mul.c | 376 | bn/bn_mul.c |
| @@ -381,7 +382,6 @@ set( | |||
| 381 | bn/bn_shift.c | 382 | bn/bn_shift.c |
| 382 | bn/bn_small_primes.c | 383 | bn/bn_small_primes.c |
| 383 | bn/bn_sqr.c | 384 | bn/bn_sqr.c |
| 384 | bn/bn_sqrt.c | ||
| 385 | bn/bn_word.c | 385 | bn/bn_word.c |
| 386 | bn/bn_x931p.c | 386 | bn/bn_x931p.c |
| 387 | buffer/buf_err.c | 387 | buffer/buf_err.c |
| @@ -723,8 +723,7 @@ set( | |||
| 723 | rsa/rsa_saos.c | 723 | rsa/rsa_saos.c |
| 724 | rsa/rsa_sign.c | 724 | rsa/rsa_sign.c |
| 725 | rsa/rsa_x931.c | 725 | rsa/rsa_x931.c |
| 726 | sha/sha1_one.c | 726 | sha/sha1.c |
| 727 | sha/sha1dgst.c | ||
| 728 | sha/sha256.c | 727 | sha/sha256.c |
| 729 | sha/sha512.c | 728 | sha/sha512.c |
| 730 | sm3/sm3.c | 729 | sm3/sm3.c |
diff --git a/crypto/Makefile.am b/crypto/Makefile.am index 3939802..da37427 100644 --- a/crypto/Makefile.am +++ b/crypto/Makefile.am | |||
| @@ -426,6 +426,7 @@ libcrypto_la_SOURCES += bn/bn_isqrt.c | |||
| 426 | libcrypto_la_SOURCES += bn/bn_kron.c | 426 | libcrypto_la_SOURCES += bn/bn_kron.c |
| 427 | libcrypto_la_SOURCES += bn/bn_lib.c | 427 | libcrypto_la_SOURCES += bn/bn_lib.c |
| 428 | libcrypto_la_SOURCES += bn/bn_mod.c | 428 | libcrypto_la_SOURCES += bn/bn_mod.c |
| 429 | libcrypto_la_SOURCES += bn/bn_mod_sqrt.c | ||
| 429 | libcrypto_la_SOURCES += bn/bn_mont.c | 430 | libcrypto_la_SOURCES += bn/bn_mont.c |
| 430 | libcrypto_la_SOURCES += bn/bn_mpi.c | 431 | libcrypto_la_SOURCES += bn/bn_mpi.c |
| 431 | libcrypto_la_SOURCES += bn/bn_mul.c | 432 | libcrypto_la_SOURCES += bn/bn_mul.c |
| @@ -437,7 +438,6 @@ libcrypto_la_SOURCES += bn/bn_recp.c | |||
| 437 | libcrypto_la_SOURCES += bn/bn_shift.c | 438 | libcrypto_la_SOURCES += bn/bn_shift.c |
| 438 | libcrypto_la_SOURCES += bn/bn_small_primes.c | 439 | libcrypto_la_SOURCES += bn/bn_small_primes.c |
| 439 | libcrypto_la_SOURCES += bn/bn_sqr.c | 440 | libcrypto_la_SOURCES += bn/bn_sqr.c |
| 440 | libcrypto_la_SOURCES += bn/bn_sqrt.c | ||
| 441 | libcrypto_la_SOURCES += bn/bn_word.c | 441 | libcrypto_la_SOURCES += bn/bn_word.c |
| 442 | libcrypto_la_SOURCES += bn/bn_x931p.c | 442 | libcrypto_la_SOURCES += bn/bn_x931p.c |
| 443 | noinst_HEADERS += bn/bn_internal.h | 443 | noinst_HEADERS += bn/bn_internal.h |
| @@ -969,8 +969,7 @@ libcrypto_la_SOURCES += rsa/rsa_x931.c | |||
| 969 | noinst_HEADERS += rsa/rsa_local.h | 969 | noinst_HEADERS += rsa/rsa_local.h |
| 970 | 970 | ||
| 971 | # sha | 971 | # sha |
| 972 | libcrypto_la_SOURCES += sha/sha1_one.c | 972 | libcrypto_la_SOURCES += sha/sha1.c |
| 973 | libcrypto_la_SOURCES += sha/sha1dgst.c | ||
| 974 | libcrypto_la_SOURCES += sha/sha256.c | 973 | libcrypto_la_SOURCES += sha/sha256.c |
| 975 | libcrypto_la_SOURCES += sha/sha512.c | 974 | libcrypto_la_SOURCES += sha/sha512.c |
| 976 | noinst_HEADERS += sha/sha_local.h | 975 | noinst_HEADERS += sha/sha_local.h |
