We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 97c36d7 commit 36a82f6Copy full SHA for 36a82f6
docs/certificat.md renamed to docs/certificate.md
@@ -1,20 +1,17 @@
1
2
-
3
-Generate a couple private and public key
+Generate a couple private and public key:
4
5
```bash
6
-openssl req -newkey rsa:2018 -nodes -keyout privkey.pem -x509 -days 365 -out public.pem
+openssl req -newkey rsa:2048 -nodes -keyout privkey.pem -x509 -days 365 -out public.pem
7
```
8
9
-merge them into a p12 file :
10
+Merge them into a p12 file:
11
12
13
openssl pkcs12 -inkey privkey.pem -in public.pem -export -out server.p12
14
15
16
-Check your p12 file :
17
+Check your p12 file:
18
19
20
openssl pkcs12 -in server.p12 -noout -info
0 commit comments