通過OpenSSL來生成二進位制格式證書檔案(pfx和cer)

FrankYou發表於2016-04-26


1、生成RSA字串私鑰

genrsa -out private-rsa.key 1024

 


2、由1中私鑰匯出*.cer二進位制公鑰檔案

req -new -x509 -key private-rsa.key -days 7300 -out public-rsa.cer

 

 

3、由1和2生成*.pfx的二進位制私鑰檔案

pkcs12 -export -name test-alias -in public-rsa.cer -inkey private-rsa.key -out ctrip_rsa.pfx

 

相關文章