Browse Source

added new 'openssl' one-liner

- signed-off-by: trimstray <trimstray@gmail.com>
pull/86/head
trimstray 5 years ago
parent
commit
6ccc7bb16b
1 changed files with 9 additions and 0 deletions
  1. +9
    -0
      README.md

+ 9
- 0
README.md View File

@@ -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…
Cancel
Save