用openssl创建证书,用.net的signtool签署cab的步骤(5个命令即可)

来源:互联网 发布:香港阿里云搭建ss 编辑:程序博客网 时间:2024/05/22 15:04
创建私钥
openssl genrsa -des3 -out big-man-009.key 4096
根据私钥生成证书请求
openssl req -new -key big-man-009.key -out big-man-009.csr
根据CSR发布一个证书
openssl x509 -req -days 365 -in big-man-009.csr -CA /etc/openssl/root/ca.crt -CAkey /etc/openssl/root/ca.key -set_serial 01 -out big-man-009.crt
合并私钥和证书
openssl pkcs12 -export -out big-man-009.pfx -inkey big-man-009.key -in big-man-009.crt
签署代码
SignTool sign /f big-man-009.pfx /d "Isac Replica2007" /du "http://salon.amique.com/"  /t http://timestamp.verisign.com/scripts/timstamp.dll Replica2007NEW.CAB
原创粉丝点击