diff options
author | Dr. David von Oheimb <David.von.Oheimb@siemens.com> | 2022-09-19 13:15:04 +0200 |
---|---|---|
committer | Dr. David von Oheimb <dev@ddvo.net> | 2022-11-25 09:19:37 +0100 |
commit | a2ede0396addd13f7fe9a629b450a14892152a83 (patch) | |
tree | 85bb68ac6b52e506bb768d29c07b8921511c4e40 /include | |
parent | OSSL_CMP_CTX_reinit(): fix missing reset of ctx->genm_ITAVs (diff) | |
download | openssl-a2ede0396addd13f7fe9a629b450a14892152a83.tar.xz openssl-a2ede0396addd13f7fe9a629b450a14892152a83.zip |
add missing OSSL_CMP_CTX_reset_geninfo_ITAVs() function
Reviewed-by: Tomas Mraz <tomas@openssl.org>
Reviewed-by: Paul Dale <pauli@openssl.org>
Reviewed-by: David von Oheimb <david.von.oheimb@siemens.com>
(Merged from https://github.com/openssl/openssl/pull/19216)
Diffstat (limited to 'include')
-rw-r--r-- | include/openssl/cmp.h.in | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/openssl/cmp.h.in b/include/openssl/cmp.h.in index 79c9414e30..ea45c60548 100644 --- a/include/openssl/cmp.h.in +++ b/include/openssl/cmp.h.in @@ -334,6 +334,7 @@ int OSSL_CMP_CTX_set1_secretValue(OSSL_CMP_CTX *ctx, const unsigned char *sec, /* CMP message header and extra certificates: */ int OSSL_CMP_CTX_set1_recipient(OSSL_CMP_CTX *ctx, const X509_NAME *name); int OSSL_CMP_CTX_push0_geninfo_ITAV(OSSL_CMP_CTX *ctx, OSSL_CMP_ITAV *itav); +int OSSL_CMP_CTX_reset_geninfo_ITAVs(OSSL_CMP_CTX *ctx); int OSSL_CMP_CTX_set1_extraCertsOut(OSSL_CMP_CTX *ctx, STACK_OF(X509) *extraCertsOut); /* certificate template: */ |