博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Openssl rsa命令
阅读量:6094 次
发布时间:2019-06-20

本文共 1556 字,大约阅读时间需要 5 分钟。

一、简介

Rsa命令用于处理RSA密钥、格式转换和打印信息

 

二、语法

openssl rsa [-inform PEM|NET|DER] [-outform PEM|NET|DER] [-in filename] [-passin arg] [-out filename] [-passout arg] [-sgckey] [-text] [-noout] [-modulus] [-check] [-pubin] [-pubout] [-engine id] [-des] [-des3] [-idea]

选项

-inform arg     input format - one of DER NET PEM -outform arg    output format - one of DER NET PEM -in arg         input file -sgckey         Use IIS SGC key format -passin arg     input file pass phrase source -out arg        output file -passout arg    output file pass phrase source -des            encrypt PEM output with cbc des -des3           encrypt PEM output with ede cbc des using 168 bit key -idea           encrypt PEM output with cbc idea -seed           encrypt PEM output with cbc seed -aes128, -aes192, -aes256                 encrypt PEM output with cbc aes -camellia128, -camellia192, -camellia256                 encrypt PEM output with cbc camellia -text           print the key in text -noout          don't print key out -modulus        print the RSA key modulus -check          verify key consistency -pubin          expect a public key in input file -pubout         output a public key -engine e       use engine e, possibly a hardware device.
-RSAPublicKey_out

 

三、实例

1、pem转换为der

openssl rsa -in prikey.pem -outform der -out prikey.der

2、从私钥提取公钥

openssl rsa -in prikey.pem -out pubkey.pem -pubout

3、查看公钥信息

openssl rsa -pubin -in pubkey.pem -text

4、查看私钥信息

openssl rsa -in prikey.pem -passin pass:"123456" -text

5、从证书中提取私钥

openssl rsa -in server.pem -out serverprikey.pem

 

参考:

转载地址:http://nhgwa.baihongyu.com/

你可能感兴趣的文章
会计基础_001
查看>>
Cordova 开发环境搭建及创建第一个app
查看>>
ajax请求拿到多条数据拼接显示在页面中
查看>>
小程序: 查看正在写的页面
查看>>
dedecms生成文档数据库崩溃 mysql daemon failed to start
查看>>
Linux的50个基本命令
查看>>
Objective-C中创建单例方法的步骤
查看>>
[转]无法安装MVC3,一直卡在vs10-kb2483190
查看>>
Codeforces 520B:Two Buttons(思维,好题)
查看>>
web框架-(二)Django基础
查看>>
Jenkins持续集成环境部署
查看>>
emoji等表情符号存mysql的方法
查看>>
Excel到R中的日期转换
查看>>
检查磁盘利用率并且定期发送告警邮件
查看>>
MWeb 1.4 新功能介绍二:静态博客功能增强
查看>>
linux文本模式和文本替换功能
查看>>
Windows SFTP 的安装
查看>>
摄像机与绕任意轴旋转
查看>>
rsync 服务器配置过程
查看>>
预处理、const与sizeof相关面试题
查看>>