Directory : /opt/puppetlabs/puppet/lib/ruby/gems/2.5.0/gems/net-ssh-4.2.0/lib/net/ssh/verifiers/ |
Current File : //opt/puppetlabs/puppet/lib/ruby/gems/2.5.0/gems/net-ssh-4.2.0/lib/net/ssh/verifiers/null.rb |
module Net; module SSH; module Verifiers # The Null host key verifier simply allows every key it sees, without # bothering to verify. This is simple, but is not particularly secure. class Null # Returns true. def verify(arguments) true end end end; end; end