diff options
author | tb <> | 2023-07-06 14:37:39 +0000 |
---|---|---|
committer | tb <> | 2023-07-06 14:37:39 +0000 |
commit | 54e886eb34c014c4079f3af241bb29e0b99acf18 (patch) | |
tree | c644feed15832ce7ae4e2e4dd8a32e1f974ef087 /src/lib/libcrypto/Makefile | |
parent | ed8e6cf151ae66733328ddd6b063a277b89f2a52 (diff) | |
download | openbsd-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/Makefile | 3 |
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 | ||
3 | LIB= crypto | 3 | LIB= crypto |
4 | LIBREBUILD=y | 4 | LIBREBUILD=y |
@@ -195,6 +195,7 @@ SRCS+= bn_mont.c | |||
195 | SRCS+= bn_mul.c | 195 | SRCS+= bn_mul.c |
196 | SRCS+= bn_prime.c | 196 | SRCS+= bn_prime.c |
197 | SRCS+= bn_primitives.c | 197 | SRCS+= bn_primitives.c |
198 | SRCS+= bn_print.c | ||
198 | SRCS+= bn_rand.c | 199 | SRCS+= bn_rand.c |
199 | SRCS+= bn_recp.c | 200 | SRCS+= bn_recp.c |
200 | SRCS+= bn_shift.c | 201 | SRCS+= bn_shift.c |