diff options
author | Joel Sing <jsing@cvs.openbsd.org> | 2019-08-11 14:11:29 +0000 |
---|---|---|
committer | Joel Sing <jsing@cvs.openbsd.org> | 2019-08-11 14:11:29 +0000 |
commit | 0edcfbf2971e9cd9c09aa38e05c6bb0f60027ab1 (patch) | |
tree | 44e443836edbc19d7ec3680458fa80697c21e591 /lib/libcrypto | |
parent | 80c6e19f791a1ad40dba0d13995ff8062209ba8b (diff) |
Provide ASN1_PKEY_CTRL_CMS_RI_TYPE.
Diffstat (limited to 'lib/libcrypto')
-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); |