summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/lib/libcrypto/asn1/asn1.h7
-rw-r--r--src/lib/libcrypto/pkcs7/pkcs7.h4
2 files changed, 9 insertions, 2 deletions
diff --git a/src/lib/libcrypto/asn1/asn1.h b/src/lib/libcrypto/asn1/asn1.h
index 03d7a2939f..8b224c1535 100644
--- a/src/lib/libcrypto/asn1/asn1.h
+++ b/src/lib/libcrypto/asn1/asn1.h
@@ -1,4 +1,4 @@
1/* $OpenBSD: asn1.h,v 1.74 2023/04/18 08:47:28 tb Exp $ */ 1/* $OpenBSD: asn1.h,v 1.75 2023/04/24 22:12:28 tb Exp $ */
2/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) 2/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
3 * All rights reserved. 3 * All rights reserved.
4 * 4 *
@@ -880,7 +880,10 @@ void ASN1_item_free(ASN1_VALUE *val, const ASN1_ITEM *it);
880ASN1_VALUE *ASN1_item_d2i(ASN1_VALUE **val, const unsigned char **in, 880ASN1_VALUE *ASN1_item_d2i(ASN1_VALUE **val, const unsigned char **in,
881 long len, const ASN1_ITEM *it); 881 long len, const ASN1_ITEM *it);
882int ASN1_item_i2d(ASN1_VALUE *val, unsigned char **out, const ASN1_ITEM *it); 882int ASN1_item_i2d(ASN1_VALUE *val, unsigned char **out, const ASN1_ITEM *it);
883
884#if !defined(LIBRESSL_NEXT_API) || defined(LIBRESSL_VERSION_NUMBER)
883int ASN1_item_ndef_i2d(ASN1_VALUE *val, unsigned char **out, const ASN1_ITEM *it); 885int ASN1_item_ndef_i2d(ASN1_VALUE *val, unsigned char **out, const ASN1_ITEM *it);
886#endif
884 887
885void ASN1_add_oid_module(void); 888void ASN1_add_oid_module(void);
886 889
@@ -925,6 +928,7 @@ void ASN1_PCTX_set_str_flags(ASN1_PCTX *p, unsigned long flags);
925 928
926const BIO_METHOD *BIO_f_asn1(void); 929const BIO_METHOD *BIO_f_asn1(void);
927 930
931#if !defined(LIBRESSL_NEXT_API) || defined(LIBRESSL_INTERNAL)
928BIO *BIO_new_NDEF(BIO *out, ASN1_VALUE *val, const ASN1_ITEM *it); 932BIO *BIO_new_NDEF(BIO *out, ASN1_VALUE *val, const ASN1_ITEM *it);
929 933
930int i2d_ASN1_bio_stream(BIO *out, ASN1_VALUE *val, BIO *in, int flags, 934int i2d_ASN1_bio_stream(BIO *out, ASN1_VALUE *val, BIO *in, int flags,
@@ -935,6 +939,7 @@ int SMIME_write_ASN1(BIO *bio, ASN1_VALUE *val, BIO *data, int flags,
935 int ctype_nid, int econt_nid, STACK_OF(X509_ALGOR) *mdalgs, 939 int ctype_nid, int econt_nid, STACK_OF(X509_ALGOR) *mdalgs,
936 const ASN1_ITEM *it); 940 const ASN1_ITEM *it);
937ASN1_VALUE *SMIME_read_ASN1(BIO *bio, BIO **bcont, const ASN1_ITEM *it); 941ASN1_VALUE *SMIME_read_ASN1(BIO *bio, BIO **bcont, const ASN1_ITEM *it);
942#endif
938int SMIME_crlf_copy(BIO *in, BIO *out, int flags); 943int SMIME_crlf_copy(BIO *in, BIO *out, int flags);
939int SMIME_text(BIO *in, BIO *out); 944int SMIME_text(BIO *in, BIO *out);
940 945
diff --git a/src/lib/libcrypto/pkcs7/pkcs7.h b/src/lib/libcrypto/pkcs7/pkcs7.h
index 1a204c2858..b225562dc3 100644
--- a/src/lib/libcrypto/pkcs7/pkcs7.h
+++ b/src/lib/libcrypto/pkcs7/pkcs7.h
@@ -1,4 +1,4 @@
1/* $OpenBSD: pkcs7.h,v 1.19 2022/07/12 14:42:50 kn Exp $ */ 1/* $OpenBSD: pkcs7.h,v 1.20 2023/04/24 22:12:28 tb Exp $ */
2/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) 2/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
3 * All rights reserved. 3 * All rights reserved.
4 * 4 *
@@ -321,7 +321,9 @@ extern const ASN1_ITEM PKCS7_it;
321extern const ASN1_ITEM PKCS7_ATTR_SIGN_it; 321extern const ASN1_ITEM PKCS7_ATTR_SIGN_it;
322extern const ASN1_ITEM PKCS7_ATTR_VERIFY_it; 322extern const ASN1_ITEM PKCS7_ATTR_VERIFY_it;
323 323
324#if !defined(LIBRESSL_NEXT_API) || defined(LIBRESSL_INTERNAL)
324int i2d_PKCS7_NDEF(PKCS7 *a, unsigned char **out); 325int i2d_PKCS7_NDEF(PKCS7 *a, unsigned char **out);
326#endif
325int PKCS7_print_ctx(BIO *out, PKCS7 *x, int indent, const ASN1_PCTX *pctx); 327int PKCS7_print_ctx(BIO *out, PKCS7 *x, int indent, const ASN1_PCTX *pctx);
326 328
327long PKCS7_ctrl(PKCS7 *p7, int cmd, long larg, char *parg); 329long PKCS7_ctrl(PKCS7 *p7, int cmd, long larg, char *parg);