Sha256: 0dc6787f30ee5a83270522b8ac8e3b4772f2c5cf08e4d7cdb33a260f6f70fa37
Contents?: true
Size: 298 Bytes
Versions: 5
Compression:
Stored size: 298 Bytes
Contents
module Net module SSH # The NullHostKeyVerifier simply allows every key it sees, without # bothering to verify. This mimics the pre-1.1 behavior of Net::SSH, but # is not very secure. class NullHostKeyVerifier def verify(arguments) true end end end end
Version data entries
5 entries across 5 versions & 1 rubygems