diff options
author | Theo Buehler <tb@cvs.openbsd.org> | 2022-11-09 22:52:52 +0000 |
---|---|---|
committer | Theo Buehler <tb@cvs.openbsd.org> | 2022-11-09 22:52:52 +0000 |
commit | 2bf6bb4ccd9e32e1a57a09652562bf8255519308 (patch) | |
tree | 1133699d5b4a20a119c5d99c92dda66016fa0099 /lib/libcrypto/Makefile | |
parent | ab58bd62db4be91d44adaac66a8a1e4b2a62d116 (diff) |
Move table in bn_primes.h to a .c file and get rid of prime_t
This way we deduplicate two inclusions of the same big table and eliminate
lots of stupid casts.
input and ok many
Diffstat (limited to 'lib/libcrypto/Makefile')
-rw-r--r-- | lib/libcrypto/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libcrypto/Makefile b/lib/libcrypto/Makefile index d3daf299701..818b2c2c144 100644 --- a/lib/libcrypto/Makefile +++ b/lib/libcrypto/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.80 2022/11/08 12:56:00 beck Exp $ +# $OpenBSD: Makefile,v 1.81 2022/11/09 22:52:51 tb Exp $ LIB= crypto LIBREBUILD=y @@ -91,7 +91,7 @@ SRCS+= bn_print.c bn_rand.c bn_shift.c bn_word.c bn_blind.c SRCS+= bn_kron.c bn_sqrt.c bn_gcd.c bn_prime.c bn_err.c bn_sqr.c SRCS+= bn_recp.c bn_mont.c bn_mpi.c bn_exp2.c bn_gf2m.c bn_nist.c SRCS+= bn_depr.c bn_const.c bn_x931p.c -SRCS+= bn_bpsw.c bn_isqrt.c +SRCS+= bn_bpsw.c bn_isqrt.c bn_small_primes.c # buffer/ SRCS+= buffer.c buf_err.c buf_str.c |