Method: Puppet::SSL::Verifier#initialize

Defined in:
lib/puppet/ssl/verifier.rb

#initialize(hostname, ssl_context) ⇒ Verifier

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

Create a verifier using an ‘ssl_context`.



18
19
20
21
# File 'lib/puppet/ssl/verifier.rb', line 18

def initialize(hostname, ssl_context)
  @hostname = hostname
  @ssl_context = ssl_context
end