mirror of
https://github.com/openssl/openssl.git
synced 2025-04-06 20:20:50 +08:00
Ignore the status_request extension in a resumption handshake
We cannot provide a certificate status on a resumption so we should ignore this extension in that case. Fixes #1662 Reviewed-by: Rich Salz <rsalz@openssl.org> Reviewed-by: Ben Kaduk <kaduk@mit.edu> (Merged from https://github.com/openssl/openssl/pull/5896)
This commit is contained in:
parent
a12de2cba8
commit
ded4a83d31
@ -324,6 +324,10 @@ int tls_parse_ctos_status_request(SSL *s, PACKET *pkt, unsigned int context,
|
||||
{
|
||||
PACKET responder_id_list, exts;
|
||||
|
||||
/* We ignore this in a resumption handshake */
|
||||
if (s->hit)
|
||||
return 1;
|
||||
|
||||
/* Not defined if we get one of these in a client Certificate */
|
||||
if (x != NULL)
|
||||
return 1;
|
||||
|
Loading…
x
Reference in New Issue
Block a user