-
-
Save lincank/3857178 to your computer and use it in GitHub Desktop.
create a self-signed certificate using ruby-openssl
This file contains 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 'rubygems' | |
require 'openssl' | |
key = OpenSSL::PKey::RSA.new(1024) | |
public_key = key.public_key | |
# uncomment the following line if you when to save key to somewhere | |
# open '/tmp/key.pem', 'w' do |io| io.write key.to_pem end | |
# puts 'save to /tmp/key.pem' | |
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 | |
# uncomment the following line if you when to save certificate to somewhere | |
# open '/tmp/cert.pem', 'w' do |io| io.write cert.to_pem end | |
# puts 'save to /tmp/cert.pem' | |
puts cert.to_pem |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment