Skip to content

Instantly share code, notes, and snippets.

@sonOfRa
Created October 24, 2019 13:21
Show Gist options
  • Save sonOfRa/01f025d3b0aa5e9059fd3efc63ca4086 to your computer and use it in GitHub Desktop.
Save sonOfRa/01f025d3b0aa5e9059fd3efc63ca4086 to your computer and use it in GitHub Desktop.
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
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