feat(timestamp): ensure signature is openssl compatible
This commit is contained in:
parent
86cda6a0b9
commit
fe8bd15939
2 changed files with 80 additions and 0 deletions
|
@ -12,5 +12,38 @@ class BillSignatureService
|
|||
signature = Certigna::API.timestamp(bill.digest)
|
||||
bill.set_signature(signature, day)
|
||||
bill.save!
|
||||
|
||||
ensure_valid_signature(bill.reload)
|
||||
rescue => error
|
||||
operations.each { |o| o.update(bill_signature: nil) }
|
||||
bill&.destroy
|
||||
raise error
|
||||
end
|
||||
|
||||
def self.ensure_valid_signature(bill)
|
||||
Dir.mktmpdir do |dir|
|
||||
operations_path = File.join(dir, 'operations')
|
||||
File.write(operations_path, bill.serialized.download, mode: 'wb')
|
||||
|
||||
signature_path = File.join(dir, 'signature')
|
||||
File.write(signature_path, bill.signature.download, mode: 'wb')
|
||||
|
||||
authorities_path = Rails.application.config.root.join('app', 'lib', 'certigna', 'authorities.crt').to_s
|
||||
|
||||
verify_cmd = "openssl ts -verify -CAfile #{authorities_path.shellescape} -data #{operations_path.shellescape} -in #{signature_path.shellescape} -token_in"
|
||||
|
||||
openssl_errors = nil
|
||||
openssl_output = nil
|
||||
|
||||
process_status = Open3.popen3(verify_cmd) do |_stdin, stdout, stderr, wait_thr|
|
||||
openssl_errors = stderr.read
|
||||
openssl_output = stdout.read
|
||||
wait_thr.value
|
||||
end
|
||||
|
||||
if !process_status.success? || openssl_output&.strip != 'Verification: OK'
|
||||
raise StandardError, "openssl verification failed: #{openssl_errors}"
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue