1
0
Fork 0

Update copyright year for 2021

This commit is contained in:
Kevin Pollet 2021-01-08 19:20:04 +01:00 committed by GitHub
parent 63929b0341
commit c24f75ce0b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
57 changed files with 122 additions and 114 deletions

View file

@ -0,0 +1,6 @@
```bash
openssl req -new -newkey rsa:2048 -x509 -days 3650 -nodes -extensions v3_ca -keyout root.key -out root.pem
openssl genrsa -out server.key 2048
openssl req -nodes -key server.key -new -out server.csr
openssl x509 -req -days 3650 -in server.csr -CA root.pem -CAkey root.key -CAcreateserial -out server.pem
```