Project

General

Profile

Bug #6134 » openssl-pkcs7-bug.rb

The sample script that exhibits this behavior - mattv (Matt Venables), 03/13/2012 01:44 AM

 
require 'openssl'
contents = File.read(__FILE__)
begin
OpenSSL::PKCS7.new(contents)
puts "OK"
rescue => e
puts "Error!"
puts e
end
(1-1/2)