作者热门文章
- xml - AJAX/Jquery XML 解析
- 具有多重继承的 XML 模式
- .net - 枚举序列化 Json 与 XML
- XML 简单类型、简单内容、复杂类型、复杂内容
我有一个 .pfx 格式的证书,我需要使用 ruby 提取公共(public)、私有(private)和 CA 证书。
使用 shell 我可以这样做:
# Extract Public Key (ask for password)
openssl pkcs12 -in file.pfx -out file_public.pem -clcerts -nokeys
# Extract Certificate Authority Key (ask for password)
openssl pkcs12 -in file.pfx -out file_ca.pem -cacerts -nokeys
# Extract Private Key (ask for password)
openssl pkcs12 -in file.pfx -out file_private.pem -nocerts -nodes
# Extract RSA Private Key from private .pem
openssl rsa -in file_private.pem -out file_private_rsa.key
# Create Combo file with Public and RSA Private Keys
cat file_private_rsa.key file_public.pem > file_combo.pem
On this post DMKE 展示了如何将 key 转换为 .PFX,但如何进行相反的转换?
最佳答案
pkcs = OpenSSL::PKCS12.new(File.read("xyz.p12"), "password_for_xyz.p12")
key = OpenSSL::PKey::RSA.new(pkcs.key.to_pem)
cert = OpenSSL::X509::Certificate.new(pkcs.certificate.to_pem)
关于ruby-on-rails - Ruby - 如何从 ruby 上的 .pfx 文件中提取公钥、rsa 私钥和 CA key ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31612841/
我是一名优秀的程序员,十分优秀!