method

using_anon_cipher?

using_anon_cipher?()
private

No documentation available.

# File ext/openssl/lib/openssl/ssl.rb, line 309
      def using_anon_cipher?
        ctx = OpenSSL::SSL::SSLContext.new
        ctx.ciphers = "aNULL"
        ctx.ciphers.include?(cipher)
      end