红联Linux门户
Linux帮助

OpenSSL生成公钥私钥

发布时间:2015-08-13 10:20:59来源:linux网站作者:bosco

用 OpenSSL, Linux 上自带,常用命令如下:


-- 生成 RSA 私钥(传统格式的)

openssl genrsa -out rsa_private_key.pem 1024


-- 将传统格式的私钥转换成 PKCS#8 格式的(JAVA需要使用的私钥需要经过PKCS#8编码,PHP程序不需要,可以直接略过)

openssl pkcs8 -topk8 -inform PEM -in rsa_private_key.pem -outform PEM -nocrypt


-- 生成 RSA 公钥

openssl rsa -in rsa_private_key.pem -pubout -out rsa_public_key.pem


Ubuntu15.04找不到公钥如何处理:http://www.linuxdiyf.com/linux/12571.html

如何在SecureCRT上使用公钥登陆Linux服务器?:http://www.linuxdiyf.com/linux/10310.html

导出MeeGo公钥在Ubuntu下:http://www.linuxdiyf.com/linux/9025.html

GitHub安装SSH公钥:http://www.linuxdiyf.com/linux/1768.html