Class: IControl::Management::OCSPResponder::SignInformation
- Inherits:
-
Base::Struct
- Object
- Base::Struct
- IControl::Management::OCSPResponder::SignInformation
- 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
-
#digest_method ⇒ IControl::Management::OCSPDigestMethod
The digest algorithm for signing the request.
-
#other_certificate ⇒ String
The additional certificates used to sign the request.
-
#pass_phrase ⇒ String
The pass phrase used to decrypt the private key.
-
#private_key ⇒ String
The private key.
-
#signer_certificate ⇒ String
The file containing the certificate used to sign the OCSP request.
Instance Attribute Details
#digest_method ⇒ IControl::Management::OCSPDigestMethod
The digest algorithm for signing the request.
638 639 640 |
# File 'lib/icontrol/management/ocsp_responder.rb', line 638 def digest_method @digest_method end |
#other_certificate ⇒ String
The additional certificates used to sign the request.
638 639 640 |
# File 'lib/icontrol/management/ocsp_responder.rb', line 638 def other_certificate @other_certificate end |
#pass_phrase ⇒ String
The pass phrase used to decrypt the private key.
638 639 640 |
# File 'lib/icontrol/management/ocsp_responder.rb', line 638 def pass_phrase @pass_phrase end |
#private_key ⇒ String
The private key. If not specified, then private key is read from same file specified in the signer_certificate.
638 639 640 |
# File 'lib/icontrol/management/ocsp_responder.rb', line 638 def private_key @private_key end |
#signer_certificate ⇒ String
The file containing the certificate used to sign the OCSP request.
638 639 640 |
# File 'lib/icontrol/management/ocsp_responder.rb', line 638 def signer_certificate @signer_certificate end |