Skip to content

Commit e75a942

Browse files
committed
src/openssl.c: Change 0x001E to KRB5_WITH_DES_CBC_SHA
According to openssl/openssl#6710 patches exist(ed) for Kerberos, while FORTEZZA_KEA_WITH_RC4_128_SHA was never implemented (and not likely to be in future)
1 parent 2ec9b93 commit e75a942

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/openssl.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1821,7 +1821,7 @@ static const struct {int num; const char *name;} ssl_ciphers_tbl[] = {
18211821
{0x001A, "TLS_DH_anon_WITH_DES_CBC_SHA"},
18221822
{0x001B, "TLS_DH_anon_WITH_3DES_EDE_CBC_SHA"},
18231823
{0x001D, "TLS_FORTEZZA_KEA_WITH_FORTEZZA_CBC_SHA"},
1824-
{0x001E, "TLS_FORTEZZA_KEA_WITH_RC4_128_SHA"},
1824+
{0x001E, "TLS_KRB5_WITH_DES_CBC_SHA"}, /* Note: https://github.com/openssl/openssl/issues/6710 */
18251825
{0x001F, "TLS_KRB5_WITH_3DES_EDE_CBC_SHA"},
18261826
{0x0020, "TLS_KRB5_WITH_RC4_128_SHA"},
18271827
{0x0021, "TLS_KRB5_WITH_IDEA_CBC_SHA"},

0 commit comments

Comments
 (0)