diff options
author | tb <> | 2023-07-28 10:02:11 +0000 |
---|---|---|
committer | tb <> | 2023-07-28 10:02:11 +0000 |
commit | 8d8ca2c8c440c1df72455fe4055627e4110c3973 (patch) | |
tree | 1367f561dd03f95b820968cb0b6444737ae3cb13 /src/lib/libcrypto/hidden/openssl/asn1.h | |
parent | f0045e366b4be4794ddf9c7123b1bb43169d83ea (diff) | |
download | openbsd-8d8ca2c8c440c1df72455fe4055627e4110c3973.tar.gz openbsd-8d8ca2c8c440c1df72455fe4055627e4110c3973.tar.bz2 openbsd-8d8ca2c8c440c1df72455fe4055627e4110c3973.zip |
Remove ASN1_bn_print() and ASN1_buf_print()
ASN1_bn_print() is a hilariously bad API that was replaced with a saner
interface internally. ASN1_buf_print() isn't terrible, but it is too
specialized to be of real use. It was only exposed because ASN1_bn_print()
was already there. Its only use had been in the EdDSA printing code before
it was replaced with an internal helper.
ok jsing
Diffstat (limited to 'src/lib/libcrypto/hidden/openssl/asn1.h')
-rw-r--r-- | src/lib/libcrypto/hidden/openssl/asn1.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/lib/libcrypto/hidden/openssl/asn1.h b/src/lib/libcrypto/hidden/openssl/asn1.h index e3095e0631..2a1eda1a89 100644 --- a/src/lib/libcrypto/hidden/openssl/asn1.h +++ b/src/lib/libcrypto/hidden/openssl/asn1.h | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: asn1.h,v 1.3 2023/07/28 09:58:30 tb Exp $ */ | 1 | /* $OpenBSD: asn1.h,v 1.4 2023/07/28 10:02:11 tb Exp $ */ |
2 | /* | 2 | /* |
3 | * Copyright (c) 2023 Bob Beck <beck@openbsd.org> | 3 | * Copyright (c) 2023 Bob Beck <beck@openbsd.org> |
4 | * | 4 | * |
@@ -208,8 +208,6 @@ LCRYPTO_USED(ASN1_GENERALIZEDTIME_print); | |||
208 | LCRYPTO_USED(ASN1_TIME_print); | 208 | LCRYPTO_USED(ASN1_TIME_print); |
209 | LCRYPTO_USED(ASN1_STRING_print); | 209 | LCRYPTO_USED(ASN1_STRING_print); |
210 | LCRYPTO_USED(ASN1_STRING_print_ex); | 210 | LCRYPTO_USED(ASN1_STRING_print_ex); |
211 | LCRYPTO_USED(ASN1_bn_print); | ||
212 | LCRYPTO_USED(ASN1_buf_print); | ||
213 | LCRYPTO_USED(ASN1_parse); | 211 | LCRYPTO_USED(ASN1_parse); |
214 | LCRYPTO_USED(ASN1_parse_dump); | 212 | LCRYPTO_USED(ASN1_parse_dump); |
215 | LCRYPTO_USED(ASN1_tag2bit); | 213 | LCRYPTO_USED(ASN1_tag2bit); |