[#9722] Kernel#system broken inside Dir.chdir(&block) if system command doesn't have shell characters — <noreply@...>

Bugs item #7278, was opened at 2006-12-14 13:59

8 messages 2006/12/14

[#9749] System V IPC in standard library? — Steven Jenkins <steven.jenkins@...>

Back in August, I needed a semaphore to serialize access to an external

14 messages 2006/12/19

[#9753] CVS freeze — SASADA Koichi <ko1@...>

Hi,

20 messages 2006/12/20
[#9755] Re: [ruby-dev:30039] CVS freeze — SASADA Koichi <ko1@...> 2006/12/20

Hi,

[#9757] Re: [ruby-dev:30040] Re: CVS freeze — SASADA Koichi <ko1@...> 2006/12/20

Hi,

[ ruby-Bugs-7218 ] OpenSSL library not updated with new PKCS #12 features

From: <noreply@...>
Date: 2006-12-11 17:55:22 UTC
List: ruby-core #9700
Bugs item #7218, was opened at 2006-12-11 17:55
You can respond by visiting: 
http://rubyforge.org/tracker/?func=detail&atid=1698&aid=7218&group_id=426

Category: Core
Group: 1.8.x
Status: Open
Resolution: None
Priority: 3
Submitted By: Romek Szczesniak (romek)
Assigned to: Nobody (None)
Summary: OpenSSL library not updated with new PKCS #12 features

Initial Comment:
Openssl changed its PKCS #12 library in May 2004 to handle the following:

openssl pkcs12 -in privkey.pem -out out.p12 -export -nocerts

However, as the Ruby OpenSSL library hasn't mirrored this, example code of PKCS #12 handling:

require "openssl"

pkey = OpenSSL::PKey::RSA.new(File.read("privkey.pem"))
#pkey = OpenSSL::PKey::RSA.new(512)
cert = OpenSSL::X509::Certificate.new
cert.version = 1
cert.subject = cert.issuer = OpenSSL::X509::Name.parse("/C=FOO")
cert.public_key = pkey.public_key
cert.not_before = Time.now
cert.not_after = Time.now+3600*24*365
cert.sign(pkey, OpenSSL::Digest::SHA1.new)
#p12 = OpenSSL::PKCS12.create("passwd", "Test User", pkey, OpenSSL::X509::Certificate.new)
p12 = OpenSSL::PKCS12.create("passwd", "Joe Fish", pkey, nil)
print "Done!" # p12.to_der

If OpenSSL::PKCS12.create has last argument nil or empty string, then the compiler complains that the object is not an OpenSSL::X509::Certificate.
If OpenSSL::PKCS12.create has last argument OpenSSL::X509::Certificate.new, then the compiler bus errors.

PKCS #12 defines (at least) six different types of key transport mechanisms. Currently, the Ruby Openssl implementation is only supporting the most used.


----------------------------------------------------------------------

You can respond by visiting: 
http://rubyforge.org/tracker/?func=detail&atid=1698&aid=7218&group_id=426

In This Thread

Prev Next