79641445

Date: 2025-05-28 03:13:27
Score: 0.5
Natty:
Report link

OK, so original openssl is great and decent, now it's time for some easy and fancy wrappers in Python:

pip install pycryptodome
from Crypto.PublicKey import RSA
with open("privkey.pem", "rb") as f:
    local_priv = RSA.import_key(f.read())

print(f"{local_priv.n = }, {local_priv.d = }")
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: RibomBalt