This commit is contained in:
oliver
2026-04-21 17:29:54 -03:00
commit 3deb54f5aa
116 changed files with 4551 additions and 0 deletions
+6
View File
@@ -0,0 +1,6 @@
#!/bin/bash
openssl genrsa -out $1.key 2048
openssl req -new -key $1.key -out $1.csr -subj "/CN=$1"
openssl x509 -req -days 365 -in $1.csr -signkey $1.key -out $1.crt