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.
|
module CryptCheck
|
|
module Tls
|
|
module Https
|
|
def self.analyze(host, port=443)
|
|
::CryptCheck.analyze host, port, Server, Grade
|
|
end
|
|
|
|
def self.analyze_file(input, output)
|
|
::CryptCheck.analyze_file(input, 'output/https.erb', output) { |host| self.analyze host }
|
|
end
|
|
end
|
|
end
|
|
end
|
|
|