Browse Source

add new one-liners to 'openssl'

- signed-off-by: trimstray <trimstray@gmail.com>
pull/98/head
trimstray 4 years ago
parent
commit
32f1f9e33f
1 changed files with 14 additions and 0 deletions
  1. +14
    -0
      README.md

+ 14
- 0
README.md View File

@@ -2308,6 +2308,20 @@ openssl x509 -signkey ${_fd} -nodes \
openssl dhparam -out /etc/nginx/ssl/dhparam_4096.pem 4096
```

###### Extract private key from pfx

```bash
( _fd_pfx="cert.pfx" ; _fd_key="key.pem" ; \
openssl pkcs12 -in ${_fd_pfx} -nocerts -nodes -out ${_fd_key} )
```

###### Extract private key and certs from pfx

```bash
( _fd_pfx="cert.pfx" ; _fd_pem="key_certs.pem" ; \
openssl pkcs12 -in ${_fd_pfx} -nodes -out ${_fd_pem} )
```

###### Convert DER to PEM

```bash


Loading…
Cancel
Save