Skip to content

Commit

Permalink
fixup! ssl_ciph.c, defltprov.c: add TLS_SHA{256,384}_SHA{256,384} cip…
Browse files Browse the repository at this point in the history
…hersuites for TLS1.3
  • Loading branch information
rajeev-0 committed Dec 13, 2023
1 parent f749f4e commit a20c455
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions ssl/s3_lib.c
Original file line number Diff line number Diff line change
Expand Up @@ -121,29 +121,29 @@ static SSL_CIPHER tls13_ciphers[] = {
TLS1_3_CK_SHA256_SHA256,
SSL_kANY,
SSL_aANY,
SSL_eNULL_HMAC_SHA256,
SSL_eNULLHMACSHA256,
SSL_AEAD,
TLS1_3_VERSION, TLS1_3_VERSION,
0, 0,
SSL_NOT_DEFAULT | SSL_STRONG_NONE,
SSL_HANDSHAKE_MAC_SHA256,
256, /* TODO: Need to check */
256, /* TODO: Need to check */
0,
256,
}, {
1,
TLS1_3_RFC_SHA384_SHA384,
TLS1_3_RFC_SHA384_SHA384,
TLS1_3_CK_SHA384_SHA384,
SSL_kANY,
SSL_aANY,
SSL_eNULL_HMAC_SHA384,
SSL_eNULLHMACSHA384,
SSL_AEAD,
TLS1_3_VERSION, TLS1_3_VERSION,
0, 0,
SSL_NOT_DEFAULT | SSL_STRONG_NONE,
SSL_HANDSHAKE_MAC_SHA384,
256, /* TODO: Need to check */
384, /* TODO: Need to check */
0,
384,
},
#endif
};
Expand Down

0 comments on commit a20c455

Please sign in to comment.