mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
e35d3623de
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
22 lines
498 B
Ruby
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
|