openssl/ciphers/select
This commit is contained in:
parent
d1a42ae039
commit
b8de8fa3fd
1 changed files with 5 additions and 4 deletions
|
@ -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
|
||||
===========
|
||||
|
|
Loading…
Reference in a new issue