Method: Puppet::SSL::StateMachine::KeySSLState#initialize
- Defined in:
- lib/puppet/ssl/state_machine.rb
#initialize(machine, ssl_context, private_key) ⇒ KeySSLState
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.
Returns a new instance of KeySSLState.
283 284 285 286 |
# File 'lib/puppet/ssl/state_machine.rb', line 283 def initialize(machine, ssl_context, private_key) super(machine, ssl_context) @private_key = private_key end |