# File lib/net/ssh/transport/cipher_factory.rb, line 35 35: def self.supported?(name) 36: ossl_name = SSH_TO_OSSL[name] or raise NotImplementedError, "unimplemented cipher `#{name}'" 37: return true if ossl_name == "none" 38: return OpenSSL::Cipher.ciphers.include?(ossl_name) 39: end