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