Class: Pdfrb::DigitalSignature::Verification::Result
- Inherits:
-
Struct
- Object
- Struct
- Pdfrb::DigitalSignature::Verification::Result
- Defined in:
- lib/pdfrb/digital_signature/verification.rb
Instance Attribute Summary collapse
-
#byte_range_ok? ⇒ Object
Returns the value of attribute byte_range_ok?.
-
#cert_chain ⇒ Object
Returns the value of attribute cert_chain.
-
#error ⇒ Object
Returns the value of attribute error.
-
#signer ⇒ Object
Returns the value of attribute signer.
-
#valid? ⇒ Object
Returns the value of attribute valid?.
Instance Attribute Details
#byte_range_ok? ⇒ Object
Returns the value of attribute byte_range_ok?
11 12 13 |
# File 'lib/pdfrb/digital_signature/verification.rb', line 11
def byte_range_ok?
@byte_range_ok?
end
|
#cert_chain ⇒ Object
Returns the value of attribute cert_chain
11 12 13 |
# File 'lib/pdfrb/digital_signature/verification.rb', line 11 def cert_chain @cert_chain end |
#error ⇒ Object
Returns the value of attribute error
11 12 13 |
# File 'lib/pdfrb/digital_signature/verification.rb', line 11 def error @error end |
#signer ⇒ Object
Returns the value of attribute signer
11 12 13 |
# File 'lib/pdfrb/digital_signature/verification.rb', line 11 def signer @signer end |
#valid? ⇒ Object
Returns the value of attribute valid?
11 12 13 |
# File 'lib/pdfrb/digital_signature/verification.rb', line 11
def valid?
@valid?
end
|