Method: HTTPClient::SSLConfig#clear_cert_store

Defined in:
lib/httpclient/ssl_config.rb

#clear_cert_storeObject

Drops current certificate store (OpenSSL::X509::Store) for SSL and create new one for the next session.

Calling this method resets all existing sessions.



124
125
126
127
# File 'lib/httpclient/ssl_config.rb', line 124

def clear_cert_store
  @cert_store = X509::Store.new
  change_notify
end