Fix downgrade fixed random to match spec

This commit is contained in:
Sean Parkinson
2020-04-07 09:42:08 +10:00
parent 9a1687d00e
commit e6affa386f

View File

@ -147,7 +147,7 @@ enum processReply {
/* Server random bytes for TLS v1.3 described downgrade protection mechanism. */ /* Server random bytes for TLS v1.3 described downgrade protection mechanism. */
static const byte tls13Downgrade[7] = { static const byte tls13Downgrade[7] = {
0x44, 0x4f, 0x47, 0x4e, 0x47, 0x52, 0x44 0x44, 0x4f, 0x57, 0x4e, 0x47, 0x52, 0x44
}; };
#define TLS13_DOWNGRADE_SZ sizeof(tls13Downgrade) #define TLS13_DOWNGRADE_SZ sizeof(tls13Downgrade)