Class Net::SSH::Verifiers::Null

  1. lib/net/ssh/verifiers/null.rb
Parent: Object

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

Methods

public instance

  1. verify

Public instance methods

verify (arguments)

Returns true.

[show source]
   # File lib/net/ssh/verifiers/null.rb, line 7
7:     def verify(arguments)
8:       true
9:     end