Class: IControl::Management::OCSPResponder::SignInformation

Inherits:
Base::Struct
  • Object
show all
Defined in:
lib/icontrol/management/ocsp_responder.rb,
lib/icontrol/management/ocsp_responder.rb

Overview

A struct that describes information necessary to sign the OCSP request.

Instance Attribute Summary collapse

Instance Attribute Details

#digest_methodIControl::Management::OCSPDigestMethod

The digest algorithm for signing the request.

Returns:



638
639
640
# File 'lib/icontrol/management/ocsp_responder.rb', line 638

def digest_method
  @digest_method
end

#other_certificateString

The additional certificates used to sign the request.

Returns:

  • (String)

    the current value of other_certificate



638
639
640
# File 'lib/icontrol/management/ocsp_responder.rb', line 638

def other_certificate
  @other_certificate
end

#pass_phraseString

The pass phrase used to decrypt the private key.

Returns:

  • (String)

    the current value of pass_phrase



638
639
640
# File 'lib/icontrol/management/ocsp_responder.rb', line 638

def pass_phrase
  @pass_phrase
end

#private_keyString

The private key. If not specified, then private key is read from same file specified in the signer_certificate.

Returns:

  • (String)

    the current value of private_key



638
639
640
# File 'lib/icontrol/management/ocsp_responder.rb', line 638

def private_key
  @private_key
end

#signer_certificateString

The file containing the certificate used to sign the OCSP request.

Returns:

  • (String)

    the current value of signer_certificate



638
639
640
# File 'lib/icontrol/management/ocsp_responder.rb', line 638

def signer_certificate
  @signer_certificate
end