class HTTPClient::JRubySSLSocket::VerifyNoneTrustManagerFactory::VerifyNoneTrustManager
Public Class Methods
new(verify_callback)
click to toggle source
# File lib/httpclient/jruby_ssl_socket.rb, line 207 def initialize(verify_callback) @verify_callback = JSSEVerifyCallback.new(verify_callback) end
Public Instance Methods
checkClientTrusted(chain, authType)
click to toggle source
# File lib/httpclient/jruby_ssl_socket.rb, line 215 def checkClientTrusted(chain, authType); end
checkServerTrusted(chain, authType)
click to toggle source
# File lib/httpclient/jruby_ssl_socket.rb, line 211 def checkServerTrusted(chain, authType) @verify_callback.call(true, chain) end
getAcceptedIssuers()
click to toggle source
# File lib/httpclient/jruby_ssl_socket.rb, line 216 def getAcceptedIssuers; end