Class: Net::SSH::Verifiers::Null

Inherits:
Object
  • Object
show all
Defined in:
lib/tpkg/thirdparty/net-ssh-2.1.0/lib/net/ssh/verifiers/null.rb

Overview

The Null host key verifier simply allows every key it sees, without bothering to verify. This is simple, but is not particularly secure.

Instance Method Summary collapse

Instance Method Details

#verify(arguments) ⇒ Object

Returns true.



7
8
9
# File 'lib/tpkg/thirdparty/net-ssh-2.1.0/lib/net/ssh/verifiers/null.rb', line 7

def verify(arguments)
  true
end