Better display for supported ciphers
parent
dbc58944ac
commit
ad7d8287a8
|
@ -7,5 +7,6 @@ require 'cryptcheck'
|
|||
puts 'Supported methods'
|
||||
puts OpenSSL::SSL::SSLContext::METHODS.select { |m| CryptCheck::Tls::Server::EXISTING_METHODS.include? m }.sort.join ' '
|
||||
|
||||
puts 'Supported ciphers'
|
||||
puts CryptCheck::Tls::Cipher.list.collect { |c| c.colorize }.join ' '
|
||||
supported = CryptCheck::Tls::Cipher.list
|
||||
puts "#{supported.size} supported ciphers"
|
||||
puts supported.collect { |c| c.colorize }.join "\n"
|
||||
|
|
Loading…
Reference in New Issue