markdown 带密钥和证书的常见OpenSSL命令
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了markdown 带密钥和证书的常见OpenSSL命令相关的知识,希望对你有一定的参考价值。
## Common OpenSSL Commands with Keys and Certificates
[SSL Info](https://www.digitalocean.com/community/tutorials/openssl-essentials-working-with-ssl-certificates-private-keys-and-csrs)
### Generate RSA private key with certificate in a single command
openssl req -x509 -newkey rsa:4096 -sha256 -keyout example.key -out example.crt -subj "/CN=example.com" -days 3650 -passout pass:foobar
### Generate Certificate Signing Request (CSR) from private key with passphrase
openssl x509 -x509toreq -in example.crt -out example.csr -signkey example.key -passin pass:foobar
#### Generate RSA private key (2048 bit)
openssl genrsa -out private.pem 2048
#### Generate a Certificate Signing Request (CSR)
openssl req -sha256 -new -key private.pem -out csr.pem
#### Generate RSA private key (2048 bit) and a Certificate Signing Request (CSR) with a single command
openssl req -new -newkey rsa:2048 -nodes -keyout server.key -out server.csr
#### Convert private key to PEM format
openssl rsa -in server.key -outform PEM -out server.pem
#### Generate a self-signed certificate that is valid for a year with sha256 hash
openssl x509 -req -sha256 -days 365 -in csr.pem -signkey private.pem -out certificate.pem
#### View details of a RSA private key
openssl rsa -in private.pem -text -noout
#### View details of a CSR
openssl req -in csr.pem -text -noout
#### View details of a Certificate
openssl x509 -in certificate.pem -text -noout
#### View details of a Certificate in DER format
openssl x509 -inform der -in certificate.cer -text -noout
#### Convert a DER file (.crt .cer .der) to PEM
openssl x509 -inform der -in certificate.cer -out certificate.pem
#### Convert a PEM file to DER
openssl x509 -outform der -in certificate.pem -out certificate.cer
以上是关于markdown 带密钥和证书的常见OpenSSL命令的主要内容,如果未能解决你的问题,请参考以下文章
OpenSSL密钥和证书管理
OpenSSL-密钥和证书管理(Key and Certificate Management)
Openssl 生成ECC证书及密钥
如何将 OpenSSL 密钥文件导入 Windows 证书存储
mysql加密连接三openssl 创建 SSL 证书和密钥
markdown OPENSSL证书转换