Initial commit

This commit is contained in:
Vloldik
2025-05-06 19:21:00 +03:00
commit 5f17ce5f03
28 changed files with 625 additions and 0 deletions

6
secrets/Readme.md Normal file
View File

@@ -0,0 +1,6 @@
# Для создания самоподписанного сертификата пользователя
1. `openssl genrsa -out myuser.key 2048`
2. `openssl req -new -key myuser.key -out myuser.csr`
3. `openssl x509 -req -in myuser.csr -CA ca.crt -CAkey ca.key -CAcreateserial -out myuser.crt -days 365 -sha256`
4. `openssl pkcs12 -export -out myuser.pfx -inkey myuser.key -in myuser.crt`