Last active
October 7, 2023 18:20
-
-
Save aspyatkin/23c336b811aac211040f to your computer and use it in GitHub Desktop.
Generate X509 CSR with SAN extension in Ruby
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 'openssl' | |
# Generate X509 CSR (certificate signing request) with SAN (Subject Alternative Name) extension and sign it with the RSA key | |
def generate_csr(common_name, organization, country, state_name, locality, domain_list) | |
# create signing key | |
signing_key = OpenSSL::PKey::RSA.new 2048 | |
# create certificate subject | |
subject = OpenSSL::X509::Name.new [ | |
['CN', common_name], | |
['O', organization], | |
['C', country], | |
['ST', state_name], | |
['L', locality] | |
] | |
# create CSR | |
csr = OpenSSL::X509::Request.new | |
csr.version = 0 | |
csr.subject = subject | |
csr.public_key = signing_key.public_key | |
# prepare SAN extension | |
san_list = domain_list.map { |domain| "DNS:#{domain}" } | |
extensions = [ | |
OpenSSL::X509::ExtensionFactory.new.create_extension('subjectAltName', san_list.join(',')) | |
] | |
# add SAN extension to the CSR | |
attribute_values = OpenSSL::ASN1::Set [OpenSSL::ASN1::Sequence(extensions)] | |
[ | |
OpenSSL::X509::Attribute.new('extReq', attribute_values), | |
OpenSSL::X509::Attribute.new('msExtReq', attribute_values) | |
].each do |attribute| | |
csr.add_attribute attribute | |
end | |
# sign CSR with the signing key | |
csr.sign signing_key, OpenSSL::Digest::SHA256.new | |
# write signing key to the file | |
open "#{common_name}.pem", 'w' do |io| | |
io.write signing_key.to_pem | |
end | |
# write certificate signing request to the file | |
open "#{common_name}.csr", 'w' do |io| | |
io.write csr.to_der | |
end | |
end | |
# Usage example | |
# generate_csr( | |
# 'acme.com', | |
# 'ACME Corp.', | |
# 'US', | |
# 'California', | |
# 'San Francisco', | |
# [ | |
# 'acme.com', | |
# 'www.acme.com', | |
# 'api.acme.com', | |
# 'cdn.acme.com' | |
# ] | |
# ) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment