Created
January 10, 2017 03:40
-
-
Save 0x384c0/dafa8d9dd0a209cf559cb21018d975f4 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require 'openssl' | |
require 'base64' | |
openssl_pass = "@resource[:password]" | |
openssl_name = "name_name_name" | |
key = OpenSSL::PKey::RSA.new(1024) | |
public_key = key.public_key | |
subject = "/C=BE/O=Test/OU=Test/CN=Test" | |
cert = OpenSSL::X509::Certificate.new | |
cert.subject = cert.issuer = OpenSSL::X509::Name.parse(subject) | |
cert.not_before = Time.now | |
cert.not_after = Time.now + 365 * 24 * 60 * 60 | |
cert.public_key = public_key | |
cert.serial = 0x0 | |
cert.version = 2 | |
ef = OpenSSL::X509::ExtensionFactory.new | |
ef.subject_certificate = cert | |
ef.issuer_certificate = cert | |
cert.extensions = [ | |
ef.create_extension("basicConstraints","CA:TRUE", true), | |
ef.create_extension("subjectKeyIdentifier", "hash"), | |
# ef.create_extension("keyUsage", "cRLSign,keyCertSign", true), | |
] | |
cert.add_extension ef.create_extension("authorityKeyIdentifier", | |
"keyid:always,issuer:always") | |
cert.sign key, OpenSSL::Digest::SHA1.new | |
p12 = OpenSSL::PKCS12.create(openssl_pass, openssl_name, public_key, cert) | |
# puts p12.friendlyname | |
# puts p12.methods.sort | |
# puts p12.key.methods.sort | |
# puts p12.certificate | |
# puts p12.ca_certs |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment