Created
October 24, 2019 13:21
-
-
Save sonOfRa/01f025d3b0aa5e9059fd3efc63ca4086 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
openssl ciphers -tls1_3 | tr ':' '\n' | grep GCM | grep AES128 | |
ECDHE-ECDSA-AES128-GCM-SHA256 | |
ECDHE-RSA-AES128-GCM-SHA256 | |
DHE-RSA-AES128-GCM-SHA256 | |
RSA-PSK-AES128-GCM-SHA256 | |
DHE-PSK-AES128-GCM-SHA256 | |
AES128-GCM-SHA256 | |
PSK-AES128-GCM-SHA256 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
openssl ciphers -tls1_3 | tr ':' '\n' | grep GCM | grep AES256 | |
ECDHE-ECDSA-AES256-GCM-SHA384 | |
ECDHE-RSA-AES256-GCM-SHA384 | |
DHE-RSA-AES256-GCM-SHA384 | |
RSA-PSK-AES256-GCM-SHA384 | |
DHE-PSK-AES256-GCM-SHA384 | |
AES256-GCM-SHA384 | |
PSK-AES256-GCM-SHA384 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment