This commit is contained in:
Stefan Friese 2022-09-05 23:30:48 +02:00
parent 40186a166a
commit e9d2df0494
1 changed files with 6 additions and 0 deletions

View File

@ -15,3 +15,9 @@ openssl pkcs12 -in cert.pfx -out cert.pem -clcerts -nokeys
openssl pkcs12 -in *.pfx -out temp.pem -nodes
openssl pkcs12 -export -out *.pfx -in temp.pem
```
## Generate Certificate
```sh
openssl req -new -x509 -keyout cert.pem -out cert.pem -days 365 -nodes
```