diff options
author | 2019-08-11 14:11:28 +0000 | |
---|---|---|
committer | 2019-08-11 14:11:28 +0000 | |
commit | d08d979fa55edea99f1f19f2162379e9ae7ffd82 (patch) | |
tree | a3a46578dbe24021f270266e70097077f02fb7aa | |
parent | start documenting the builtin filters (diff) | |
download | wireguard-openbsd-d08d979fa55edea99f1f19f2162379e9ae7ffd82.tar.xz wireguard-openbsd-d08d979fa55edea99f1f19f2162379e9ae7ffd82.zip |
Provide ASN1_PKEY_CTRL_CMS_RI_TYPE.
-rw-r--r-- | lib/libcrypto/evp/evp.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/libcrypto/evp/evp.h b/lib/libcrypto/evp/evp.h index e8ab36693a4..3b3d6a07ead 100644 --- a/lib/libcrypto/evp/evp.h +++ b/lib/libcrypto/evp/evp.h @@ -1,4 +1,4 @@ -/* $OpenBSD: evp.h,v 1.75 2019/03/17 18:17:44 tb Exp $ */ +/* $OpenBSD: evp.h,v 1.76 2019/08/11 14:11:28 jsing Exp $ */ /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) * All rights reserved. * @@ -1014,6 +1014,7 @@ void EVP_PBE_cleanup(void); #define ASN1_PKEY_CTRL_DEFAULT_MD_NID 0x3 #define ASN1_PKEY_CTRL_CMS_SIGN 0x5 #define ASN1_PKEY_CTRL_CMS_ENVELOPE 0x7 +#define ASN1_PKEY_CTRL_CMS_RI_TYPE 0x8 int EVP_PKEY_asn1_get_count(void); const EVP_PKEY_ASN1_METHOD *EVP_PKEY_asn1_get0(int idx); |