1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00
ruby--ruby/sample/openssl/smime_read.rb
Kazuki Yamaguchi e35d3623de [ruby/openssl] sample: avoid "include OpenSSL"
It is not a common practice and should not be done since it causes name
clash: for example, Digest and Random are provided by other standard
libraries of Ruby.

Fixes: https://github.com/ruby/openssl/issues/419

https://github.com/ruby/openssl/commit/6a6444984b
2021-03-16 19:37:06 +09:00

22 lines
498 B
Ruby

require 'optparse'
require 'openssl'
options = ARGV.getopts("c:k:C:")
cert_file = options["c"]
key_file = options["k"]
ca_path = options["C"]
data = $stdin.read
cert = OpenSSL::X509::Certificate.new(File::read(cert_file))
key = OpenSSL::PKey::read(File::read(key_file))
p7enc = OpenSSL::PKCS7::read_smime(data)
data = p7enc.decrypt(key, cert)
store = OpenSSL::X509::Store.new
store.add_path(ca_path)
p7sig = OpenSSL::PKCS7::read_smime(data)
if p7sig.verify([], store)
puts p7sig.data
end