brain/src/ops/tools/openssl.md
2019-07-07 21:21:48 +02:00

22 lines
222 B
Markdown

# OpenSSL
## Checking
### CSR
```shell
openssl req -text -noout -verify -in request.csr
```
### Key
```shell
openssl rsa -in privkey.key -check
```
### Cert
```shell
openssl x509 -in certficate.crt -text -noout
```