added new 'openssl' one-liner
- signed-off-by: trimstray <trimstray@gmail.com>
This commit is contained in:
parent
8c589bbcb4
commit
6ccc7bb16b
@ -1962,6 +1962,15 @@ openssl ecparam -out ${_fd} -name ${_curve} -genkey ; \
|
|||||||
openssl req -new -key ${_fd} -out ${_fd_csr} -sha256 )
|
openssl req -new -key ${_fd} -out ${_fd_csr} -sha256 )
|
||||||
```
|
```
|
||||||
|
|
||||||
|
###### Generate self-signed certificate
|
||||||
|
|
||||||
|
```bash
|
||||||
|
# _len: 2048, 4096
|
||||||
|
( _fd="domain.key" ; _fd_out="domain.crt" ; _len="4096" ; _days="365" ; \
|
||||||
|
openssl req -newkey rsa:${_len} -nodes -keyout ${_fd} \
|
||||||
|
-x509 -days ${_days} -out ${_fd_out} )
|
||||||
|
```
|
||||||
|
|
||||||
###### Convert DER to PEM
|
###### Convert DER to PEM
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
|
Loading…
Reference in New Issue
Block a user