openssl/ciphers/select

This commit is contained in:
Marc Beninca 2019-08-05 10:07:16 +02:00
parent d1a42ae039
commit b8de8fa3fd

View file

@ -7,10 +7,11 @@ Select secure ciphers
.. code:: shell
openssl ciphers \
| sed -e "s/:/\n/g" \
| grep "\(TLS\|ECDHE-RSA\)" \
| grep "\(GCM\|POLY1305\)"
openssl ciphers ALL \
| sed "s/:/\n/g" \
| grep "\(TLS\|ECDHE\)" \
| grep --invert-match "\(DSA\|PSK\)" \
| grep "\(POLY1305\|GCM\)"
List curves
===========