Class: HexaPDF::DigitalSignature::PKCS1Handler

Inherits:
Handler
  • Object
show all
Defined in:
lib/hexapdf/digital_signature/pkcs1_handler.rb

Overview

The signature handler for PKCS#1 based sub-filters, the only being the adbe.x509.rsa_sha1 sub-filter.

Note that PKCS#1 signatures are deprecated with PDF 2.0.

See: PDF2.0 s12.8.3.2

Instance Attribute Summary

Attributes inherited from Handler

#signature_dict

Instance Method Summary collapse

Methods inherited from Handler

#initialize, #signer_name, #signing_time

Constructor Details

This class inherits a constructor from HexaPDF::DigitalSignature::Handler

Instance Method Details

#certificate_chainObject

Returns the certificate chain.



52
53
54
55
# File 'lib/hexapdf/digital_signature/pkcs1_handler.rb', line 52

def certificate_chain
  return [] unless signature_dict.key?(:Cert)
  [signature_dict[:Cert]].flatten.map {|str| OpenSSL::X509::Certificate.new(str) }
end

#signer_certificateObject

Returns the signer certificate (an instance of OpenSSL::X509::Certificate).



58
59
60
# File 'lib/hexapdf/digital_signature/pkcs1_handler.rb', line 58

def signer_certificate
  certificate_chain.first
end

#verify(store, allow_self_signed: false) ⇒ Object

Verifies the signature using the provided OpenSSL::X509::Store object.



63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
# File 'lib/hexapdf/digital_signature/pkcs1_handler.rb', line 63

def verify(store, allow_self_signed: false)
  result = super

  signer_certificate = self.signer_certificate
  certificate_chain = self.certificate_chain

  if certificate_chain.empty?
    result.log(:error, "No certificates for verification found")
    return result
  end

  signature = OpenSSL::ASN1.decode(signature_dict.contents)
  if signature.tag != OpenSSL::ASN1::OCTET_STRING
    result.log(:error, "PKCS1 signature object invalid, octet string expected")
    return result
  end

  store.verify(signer_certificate, certificate_chain)

  if signer_certificate.public_key.verify(OpenSSL::Digest.new('SHA1'),
                                          signature.value, signature_dict.signed_data)
    result.log(:info, "Signature valid")
  else
    result.log(:error, "Signature verification failed")
  end

  result
end