mirror of
https://github.com/openssl/openssl.git
synced 2025-03-31 20:10:45 +08:00
Explicitly cache the X509v3_extensions in one more place in libssl
Make sure we cache the extensions for a cert using the right libctx. Reviewed-by: Richard Levitte <levitte@openssl.org> Reviewed-by: Tomas Mraz <tmraz@fedoraproject.org> (Merged from https://github.com/openssl/openssl/pull/11457)
This commit is contained in:
parent
0c56a64829
commit
e66c37deb6
@ -1055,9 +1055,15 @@ static int ssl_set_cert_and_key(SSL *ssl, SSL_CTX *ctx, X509 *x509, EVP_PKEY *pr
|
||||
int j;
|
||||
int rv;
|
||||
CERT *c = ssl != NULL ? ssl->cert : ctx->cert;
|
||||
SSL_CTX *actualctx = ssl == NULL ? ctx : ssl->ctx;
|
||||
STACK_OF(X509) *dup_chain = NULL;
|
||||
EVP_PKEY *pubkey = NULL;
|
||||
|
||||
if (!X509v3_cache_extensions(x509, actualctx->libctx, actualctx->propq)) {
|
||||
SSLerr(0, ERR_R_X509_LIB);
|
||||
goto out;
|
||||
}
|
||||
|
||||
/* Do all security checks before anything else */
|
||||
rv = ssl_security_cert(ssl, ctx, x509, 0, 1);
|
||||
if (rv != 1) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user