Skip to content
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

deps: Disable EXPORT and LOW ciphers in openssl for v0.12 #5712

Closed
wants to merge 2 commits into from

Commits on Mar 15, 2016

  1. deps: Disable EXPORT and LOW ciphers in openssl

    openssl-1.0.1s disables EXPORT and LOW ciphers by default.
    They are obsoleted ciphers and not safe for the current use.
    Node LTS also deprecates them.
    
    Fixes: nodejs/Release#85
    Shigeki Ohtsu committed Mar 15, 2016
    Configuration menu
    Copy the full SHA
    20cb91d View commit details
    Browse the repository at this point in the history
  2. test: change tls tests not to use LOW cipher

    DES-CBC-SHA is LOW cipher and disabled by default and it is used in
    tests of hornorcipherorder. They are changed as to
    
    - use RC4-SHA instead of DES-CBC-SHA.
    - add ECDHE-RSA-AES256-SHA to entries to keep the number of ciphers.
    - remove tests for non-default cipher because only SEED and IDEA are
    available in !RC4:!HIGH:ALL.
    Shigeki Ohtsu committed Mar 15, 2016
    Configuration menu
    Copy the full SHA
    c90797c View commit details
    Browse the repository at this point in the history