Skip to content

Commit

Permalink
src/openssl.c: Change 0x001E to KRB5_WITH_DES_CBC_SHA
Browse files Browse the repository at this point in the history
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)
  • Loading branch information
daurnimator committed Jul 31, 2018
1 parent 2ec9b93 commit e75a942
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/openssl.c
Original file line number Diff line number Diff line change
Expand Up @@ -1821,7 +1821,7 @@ static const struct {int num; const char *name;} ssl_ciphers_tbl[] = {
{0x001A, "TLS_DH_anon_WITH_DES_CBC_SHA"},
{0x001B, "TLS_DH_anon_WITH_3DES_EDE_CBC_SHA"},
{0x001D, "TLS_FORTEZZA_KEA_WITH_FORTEZZA_CBC_SHA"},
{0x001E, "TLS_FORTEZZA_KEA_WITH_RC4_128_SHA"},
{0x001E, "TLS_KRB5_WITH_DES_CBC_SHA"}, /* Note: https://github.com/openssl/openssl/issues/6710 */
{0x001F, "TLS_KRB5_WITH_3DES_EDE_CBC_SHA"},
{0x0020, "TLS_KRB5_WITH_RC4_128_SHA"},
{0x0021, "TLS_KRB5_WITH_IDEA_CBC_SHA"},
Expand Down

0 comments on commit e75a942

Please sign in to comment.