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.
|
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
|
|
|