Explorar el Código

fix TOC; add 'Extract certs from p7b'

- signed-off-by: trimstray <trimstray@gmail.com>
pull/175/head
trimstray hace 3 años
padre
commit
b5ce082da5
Se han modificado 1 ficheros con 10 adiciones y 0 borrados
  1. +10
    -0
      README.md

+ 10
- 0
README.md Ver fichero

@@ -2758,6 +2758,16 @@ openssl pkcs12 -in ${_fd_pfx} -nocerts -nodes -out ${_fd_key} )
openssl pkcs12 -in ${_fd_pfx} -nodes -out ${_fd_pem} )
```

###### Extract certs from p7b

```bash
# PKCS#7 file doesn't include private keys.
( _fd_p7b="cert.p7b" ; _fd_pem="cert.pem" ; \
openssl pkcs7 -inform DER -outform PEM -in ${_fd_p7b} -print_certs > ${_fd_pem})
# or:
openssl pkcs7 -print_certs -in -in ${_fd_p7b} -out ${_fd_pem})
```

###### Convert DER to PEM

```bash


Cargando…
Cancelar
Guardar