mirror of
http://git.haproxy.org/git/haproxy.git/
synced 2025-01-05 19:52:14 +00:00
BUG/MINOR: ssl: Fix 48 byte TLS ticket key rotation
Whenever HAProxy was reloaded with rotated keys, the resumption would be broken for previous encryption key. The bug was introduced with the addition of 80 byte keys in 9e7547 (MINOR: ssl: add support of aes256 bits ticket keys on file and cli.). This fix needs to be backported to 1.9.
This commit is contained in:
parent
646b7741bc
commit
8ef706502a
@ -63,7 +63,7 @@ struct tls_sess_key_256 {
|
||||
|
||||
union tls_sess_key{
|
||||
unsigned char name[16];
|
||||
struct tls_sess_key_256 key_128;
|
||||
struct tls_sess_key_128 key_128;
|
||||
struct tls_sess_key_256 key_256;
|
||||
} __attribute__((packed));
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user