summaryrefslogtreecommitdiff
path: root/src/lib/libcrypto/Makefile
diff options
context:
space:
mode:
authortb <>2023-07-06 14:37:39 +0000
committertb <>2023-07-06 14:37:39 +0000
commit54e886eb34c014c4079f3af241bb29e0b99acf18 (patch)
treec644feed15832ce7ae4e2e4dd8a32e1f974ef087 /src/lib/libcrypto/Makefile
parented8e6cf151ae66733328ddd6b063a277b89f2a52 (diff)
downloadopenbsd-54e886eb34c014c4079f3af241bb29e0b99acf18.tar.gz
openbsd-54e886eb34c014c4079f3af241bb29e0b99acf18.tar.bz2
openbsd-54e886eb34c014c4079f3af241bb29e0b99acf18.zip
Add bn_printf(), a replacement for ASN1_bn_print()
ASN1_bn_print() will be removed in an upcoming bump. This adds an internal API that covers the same functionality but doesn't require that the caller pass in a sufficiently large scratch space that ASN1_bn_print() may or may not use. In addition, this takes a format string, which allows us to ditch some extra dances. ok jsing
Diffstat (limited to 'src/lib/libcrypto/Makefile')
-rw-r--r--src/lib/libcrypto/Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/lib/libcrypto/Makefile b/src/lib/libcrypto/Makefile
index 6e41dae162..f40ef656b7 100644
--- a/src/lib/libcrypto/Makefile
+++ b/src/lib/libcrypto/Makefile
@@ -1,4 +1,4 @@
1# $OpenBSD: Makefile,v 1.135 2023/07/05 12:31:14 tb Exp $ 1# $OpenBSD: Makefile,v 1.136 2023/07/06 14:37:39 tb Exp $
2 2
3LIB= crypto 3LIB= crypto
4LIBREBUILD=y 4LIBREBUILD=y
@@ -195,6 +195,7 @@ SRCS+= bn_mont.c
195SRCS+= bn_mul.c 195SRCS+= bn_mul.c
196SRCS+= bn_prime.c 196SRCS+= bn_prime.c
197SRCS+= bn_primitives.c 197SRCS+= bn_primitives.c
198SRCS+= bn_print.c
198SRCS+= bn_rand.c 199SRCS+= bn_rand.c
199SRCS+= bn_recp.c 200SRCS+= bn_recp.c
200SRCS+= bn_shift.c 201SRCS+= bn_shift.c