CipherSuites package updated
Posted 2018-03-12 20:16:18.000000
I just pushed version 0.2.1 of the cipher_suites
package to Hex:
https://hex.pm/packages/cipher_suites
It still helps you select and prioritise your cipher list in Elixir/Erlang TLS applications using OpenSSL syntax. This version simplifies the configuration of Phoenix HTTPS endpoints, leveraging the init/2
callback introduced in Phoenix.Endpoint.
From the changelog:
- Added
CipherSuites.init_phoenix_endpoint/1
and removedCipherSuites.ApplyConfig
- Demoted 3DES from HIGH to MEDIUM, to align with recent OpenSSL versions
- Support for new
:ssl
module versions that return suite definition as a map rather than a 4-tuple - Fix deprecation warning (now requiring Elixir 1.4 or later)
- Code formatting
Back