brain/src/ops/tools/openssl.md

22 lines
222 B
Markdown
Raw Normal View History

2018-01-04 14:43:05 +00:00
# OpenSSL
## Checking
### CSR
2019-07-07 19:21:48 +00:00
```shell
openssl req -text -noout -verify -in request.csr
```
2018-01-04 14:43:05 +00:00
### Key
2019-07-07 19:21:48 +00:00
```shell
openssl rsa -in privkey.key -check
```
2018-01-04 14:43:05 +00:00
### Cert
2019-07-07 19:21:48 +00:00
```shell
openssl x509 -in certficate.crt -text -noout
```