diff options
author | 2016-12-27 16:12:47 +0000 | |
---|---|---|
committer | 2016-12-27 16:12:47 +0000 | |
commit | 7c0acaf3afcf32f18d8e2ac83b631e4076c760b6 (patch) | |
tree | 6fff491330884e50bde2fd1ad6df77be5f54ffea | |
parent | Remove all DECLARE_ASN1_SET_OF macro usage - since 2000 these have been (diff) | |
download | wireguard-openbsd-7c0acaf3afcf32f18d8e2ac83b631e4076c760b6.tar.xz wireguard-openbsd-7c0acaf3afcf32f18d8e2ac83b631e4076c760b6.zip |
Expand DECLARE_ASN1_{NDEF,PRINT}_FUNCTION macros - no change in
preprocesssor output.
-rw-r--r-- | lib/libcrypto/pkcs7/pkcs7.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/libcrypto/pkcs7/pkcs7.h b/lib/libcrypto/pkcs7/pkcs7.h index d3f398dc34b..520cc3c519b 100644 --- a/lib/libcrypto/pkcs7/pkcs7.h +++ b/lib/libcrypto/pkcs7/pkcs7.h @@ -1,4 +1,4 @@ -/* $OpenBSD: pkcs7.h,v 1.17 2016/12/27 16:05:57 jsing Exp $ */ +/* $OpenBSD: pkcs7.h,v 1.18 2016/12/27 16:12:47 jsing Exp $ */ /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) * All rights reserved. * @@ -321,8 +321,8 @@ extern const ASN1_ITEM PKCS7_it; extern const ASN1_ITEM PKCS7_ATTR_SIGN_it; extern const ASN1_ITEM PKCS7_ATTR_VERIFY_it; -DECLARE_ASN1_NDEF_FUNCTION(PKCS7) -DECLARE_ASN1_PRINT_FUNCTION(PKCS7) +int i2d_PKCS7_NDEF(PKCS7 *a, unsigned char **out); +int PKCS7_print_ctx(BIO *out, PKCS7 *x, int indent, const ASN1_PCTX *pctx); long PKCS7_ctrl(PKCS7 *p7, int cmd, long larg, char *parg); |