Initial Code

First Commit
This commit is contained in:
2025-06-16 01:02:22 +02:00
commit 55d25b0eb9
19 changed files with 1444 additions and 0 deletions

10
test.py Executable file
View File

@@ -0,0 +1,10 @@
from cryptography.hazmat.primitives import serialization
with open("vapid_private.pem", "rb") as f:
key_data = f.read()
try:
private_key = serialization.load_pem_private_key(key_data, password=None)
print("PEM loaded successfully!")
except Exception as e:
print("Failed to load PEM:", e)