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
632 B
Ruby
22 lines
632 B
Ruby
require 'openssl'
|
|
require 'optparse'
|
|
|
|
options = ARGV.getopts("c:k:r:")
|
|
|
|
cert_file = options["c"]
|
|
key_file = options["k"]
|
|
rcpt_file = options["r"]
|
|
|
|
cert = OpenSSL::X509::Certificate.new(File::read(cert_file))
|
|
key = OpenSSL::PKey::read(File::read(key_file))
|
|
|
|
data = "Content-Type: text/plain\r\n"
|
|
data << "\r\n"
|
|
data << "This is a clear-signed message.\r\n"
|
|
|
|
p7sig = OpenSSL::PKCS7::sign(cert, key, data, [], OpenSSL::PKCS7::DETACHED)
|
|
smime0 = OpenSSL::PKCS7::write_smime(p7sig)
|
|
|
|
rcpt = OpenSSL::X509::Certificate.new(File::read(rcpt_file))
|
|
p7enc = OpenSSL::PKCS7::encrypt([rcpt], smime0)
|
|
print OpenSSL::PKCS7::write_smime(p7enc)
|