Sha256: a8de424ccd082848e8615db58343381d9677aa0e37cd532e14e28631ba911bc7
Contents?: true
Size: 419 Bytes
Versions: 36
Compression:
Stored size: 419 Bytes
Contents
module Net module SSH module Verifiers # This host key verifier simply allows every key it sees, without # any verification. This is simple, but very insecure because it # exposes you to MiTM attacks. class Never # Returns true. def verify(arguments) true end def verify_signature(&block) true end end end end end
Version data entries
36 entries across 32 versions & 3 rubygems