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.
12 lines
278 B
12 lines
278 B
module CryptCheck
|
|
module Ssh
|
|
autoload :Host, 'cryptcheck/ssh/host'
|
|
autoload :Server, 'cryptcheck/ssh/server'
|
|
autoload :Grade, 'cryptcheck/ssh/grade'
|
|
|
|
def self.analyze(host, port = 22)
|
|
host = Host.new host, port
|
|
Tls.aggregate host
|
|
end
|
|
end
|
|
end
|
|
|