mirror of
https://github.com/openssl/openssl.git
synced 2025-03-31 20:10:45 +08:00
ts_RESP_sign: Don't try to use v2 signing when ESS digest isn't set
Reviewed-by: Rich Salz <rsalz@openssl.org> (Merged from https://github.com/openssl/openssl/pull/5653)
This commit is contained in:
parent
311276ffe3
commit
d597208c03
@ -678,7 +678,8 @@ static int ts_RESP_sign(TS_RESP_CTX *ctx)
|
||||
}
|
||||
|
||||
certs = ctx->flags & TS_ESS_CERT_ID_CHAIN ? ctx->certs : NULL;
|
||||
if (ctx->ess_cert_id_digest == EVP_sha1()) {
|
||||
if (ctx->ess_cert_id_digest == NULL
|
||||
|| ctx->ess_cert_id_digest == EVP_sha1()) {
|
||||
if ((sc = ess_SIGNING_CERT_new_init(ctx->signer_cert, certs)) == NULL)
|
||||
goto err;
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user