initial server implementation

This commit is contained in:
raf 2024-12-22 19:12:35 +03:00
commit 45bef8e582
No known key found for this signature in database
GPG key ID: EED98D11B85A2819
5 changed files with 398 additions and 0 deletions

6
README.md Normal file
View file

@ -0,0 +1,6 @@
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
```