mirror of
https://github.com/openssl/openssl.git
synced 2025-03-31 20:10:45 +08:00
bugfix in ossl_cmp_msg_add_extraCerts(): should include cert chain when using PBM
Reviewed-by: Tim Hudson <tjh@openssl.org> (Merged from https://github.com/openssl/openssl/pull/12822)
This commit is contained in:
parent
7eb48cfc66
commit
6199478101
@ -140,7 +140,8 @@ int ossl_cmp_msg_add_extraCerts(OSSL_CMP_CTX *ctx, OSSL_CMP_MSG *msg)
|
||||
return 0;
|
||||
|
||||
/* Add first ctx->cert and its chain if using signature-based protection */
|
||||
if (!ctx->unprotectedSend && ctx->secretValue == NULL) {
|
||||
if (!ctx->unprotectedSend && ctx->secretValue == NULL
|
||||
&& ctx->cert != NULL && ctx->pkey != NULL) {
|
||||
int flags_prepend = X509_ADD_FLAG_UP_REF | X509_ADD_FLAG_NO_DUP
|
||||
| X509_ADD_FLAG_PREPEND | X509_ADD_FLAG_NO_SS;
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user