You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
cryptcheck/lib/cryptcheck/tls/https.rb

12 lines
185 B

require 'resolv'
module CryptCheck
module Tls
module Https
def self.analyze(hostname, port = 443)
host = Host.new hostname, port
Tls.aggregate host
end
end
end
end