Allow ENGINE client cert callback to specify a set of other certs, for

the rest of the certificate chain. Currently unused.
This commit is contained in:
Dr. Stephen Henson
2008-06-01 22:45:08 +00:00
parent c61915c659
commit 3fc59c8406
3 changed files with 5 additions and 4 deletions

View File

@@ -2959,7 +2959,7 @@ int ssl_do_client_cert_cb(SSL *s, X509 **px509, EVP_PKEY **ppkey)
{
i = ENGINE_load_ssl_client_cert(s->ctx->client_cert_engine, s,
SSL_get_client_CA_list(s),
px509, ppkey, NULL, NULL);
px509, ppkey, NULL, NULL, NULL);
if (i != 0)
return i;
}