New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
RC4 security in TLS #8
Comments
there's now even a proposed standard rfc, shepherded... http://www.ietf.org/id/draft-ietf-tls-prohibiting-rc4-01.txt |
talking to @Andreas23 I think we should remove RC4 from the default_config ciphers (but still list as supported, since our implementation does support RC4). |
disable RC4 by default (users who need RC4 can tweak the configuration) fixes #8
Is RC4 really disabled, or just not advertised as per the commit message? |
in the default config in master, RC4 is disabled -- it can not be negotiated. You can still configure OCaml-TLS to use RC4. The 0.3.0 release still advertises RC4 by default (but there'll be a 0.4.0 really soon now)! |
problem: some bytes can be recovered
solution: throw RC4 away and switch to CBC
references
The text was updated successfully, but these errors were encountered: