Flowdock
method

using_anon_cipher?

Importance_0
v2_2_9 - Show latest stable - 0 notes - Class: SSLSocket
using_anon_cipher?() private

No documentation

This method has no description. You can help the Ruby community by adding new notes.

Hide source
# File ext/openssl/lib/openssl/ssl.rb, line 253
      def using_anon_cipher?
        ctx = OpenSSL::SSL::SSLContext.new
        ctx.ciphers = "aNULL"
        ctx.ciphers.include?(cipher)
      end
Register or log in to add new notes.