Sha256: f64ddbf3c66427816e61bb9522b7b42198ac4ca69ec9d5c41654304af5171c44
Contents?: true
Size: 406 Bytes
Versions: 12
Compression:
Stored size: 406 Bytes
Contents
module Net module SSH module Transport # Loads chacha20 poly1305 support which requires optinal dependency rbnacl module ChaCha20Poly1305CipherLoader begin require 'net/ssh/transport/chacha20_poly1305_cipher' LOADED = true ERROR = nil rescue LoadError => e ERROR = e LOADED = false end end end end end
Version data entries
12 entries across 12 versions & 3 rubygems