mirror of
https://github.com/NotAShelf/mpvrc.git
synced 2026-04-15 23:43:49 +00:00
6 lines
208 B
Markdown
6 lines
208 B
Markdown
Creating a PKCS#12 certificate file using OpenSSL:
|
|
|
|
```bash
|
|
openssl req -x509 -newkey rsa:4096 -keyout key.pem -out cert.pem -days 365
|
|
openssl pkcs12 -export -out identity.pfx -inkey key.pem -in cert.pem
|
|
```
|