summaryrefslogtreecommitdiffstats
path: root/crypto/evp
diff options
context:
space:
mode:
authorSergey Agievich <agievich@gmail.com>2015-06-01 12:48:27 +0100
committerDr. Stephen Henson <steve@openssl.org>2015-06-03 15:18:14 +0100
commitad0fb7f4988c8a717fe6bcb035304385fbdaef41 (patch)
tree228c27f3578b30a46b6019b5d3d6cfabe687acb7 /crypto/evp
parentb1d5b8a4a47f0f3c0e10c904b3b0fdc53a235fd0 (diff)
Add funtions to set item_sign and item_verify
PR#3872 Reviewed-by: Matt Caswell <matt@openssl.org> Reviewed-by: Stephen Henson <steve@openssl.org>
Diffstat (limited to 'crypto/evp')
-rw-r--r--crypto/evp/evp.h13
1 files changed, 13 insertions, 0 deletions
diff --git a/crypto/evp/evp.h b/crypto/evp/evp.h
index 1d705cd5de..39ab7937d2 100644
--- a/crypto/evp/evp.h
+++ b/crypto/evp/evp.h
@@ -1123,6 +1123,19 @@ void EVP_PKEY_asn1_set_free(EVP_PKEY_ASN1_METHOD *ameth,
void EVP_PKEY_asn1_set_ctrl(EVP_PKEY_ASN1_METHOD *ameth,
int (*pkey_ctrl) (EVP_PKEY *pkey, int op,
long arg1, void *arg2));
+void EVP_PKEY_asn1_set_item(EVP_PKEY_ASN1_METHOD *ameth,
+ int (*item_verify) (EVP_MD_CTX *ctx,
+ const ASN1_ITEM *it,
+ void *asn,
+ X509_ALGOR *a,
+ ASN1_BIT_STRING *sig,
+ EVP_PKEY *pkey),
+ int (*item_sign) (EVP_MD_CTX *ctx,
+ const ASN1_ITEM *it,
+ void *asn,
+ X509_ALGOR *alg1,
+ X509_ALGOR *alg2,
+ ASN1_BIT_STRING *sig));
# define EVP_PKEY_OP_UNDEFINED 0
# define EVP_PKEY_OP_PARAMGEN (1<<1)