linux系统生成公钥和私钥和生成csr证书

因为微信支付回调要使用https加密传输,所以需要申请ssl证书。而申请ssl证书需要生成私钥和csr。

一:记录生成pem格式私钥和公钥:

生成1024位私钥:openssl genrsa -out private.pem 1024

根据私钥生成公钥:openssl rsa -in private.pem -pubout -out rsa_public.pem

linux系统生成公钥和私钥和生成csr证书_第1张图片

生成的文件默认在执行命令的文件夹下,加密方式RSA

二:生成key格式私钥和pem格式csr

生成2048位私钥:openssl genrsa -out private.key 2048

根据私钥生成csr:openssl req -new -key private.key -out csr.pem

需要填写一些信息:如国家代码等如图:

linux系统生成公钥和私钥和生成csr证书_第2张图片

生成的文件默认在执行命令的文件夹下

你可能感兴趣的:(linux,https,运维)