Skip to content

Commit

Permalink
Raise tls_ciphers to 2048 (openssl ciphers | wc -c -gt 1330)
Browse files Browse the repository at this point in the history
  • Loading branch information
Cizzle committed Dec 2, 2018
1 parent 1c25319 commit 86eb744
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/tcl.c
Original file line number Diff line number Diff line change
Expand Up @@ -370,7 +370,7 @@ static tcl_strings def_tcl_strings[] = {
#ifdef TLS
{"ssl-capath", tls_capath, 120, STR_DIR | STR_PROTECT},
{"ssl-cafile", tls_cafile, 120, STR_PROTECT},
{"ssl-ciphers", tls_ciphers, 140, STR_PROTECT},
{"ssl-ciphers", tls_ciphers, 2048, STR_PROTECT},
{"ssl-privatekey", tls_keyfile, 120, STR_PROTECT},
{"ssl-certificate", tls_certfile, 120, STR_PROTECT},
#endif
Expand Down
2 changes: 1 addition & 1 deletion src/tls.c
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ char tls_capath[121] = ""; /* Path to trusted CA certificates */
char tls_cafile[121] = ""; /* File containing trusted CA certificates */
char tls_certfile[121] = ""; /* Our own digital certificate ;) */
char tls_keyfile[121] = ""; /* Private key for use with eggdrop */
char tls_ciphers[121] = ""; /* A list of ciphers for SSL to use */
char tls_ciphers[2049] = ""; /* A list of ciphers for SSL to use */


/* Count allocated memory for SSL. This excludes memory allocated by OpenSSL's
Expand Down

0 comments on commit 86eb744

Please sign in to comment.