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