method
using_anon_cipher?
v2_4_6 -
Show latest stable
- Class:
OpenSSL::SSL::SSLSocket
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