fork download
  1. from cryptography.hazmat.primitives.asymmetric import dsa
  2. from cryptography.hazmat.primitives import hashes
  3. from cryptography.hazmat.backends import default_backend
  4. from cryptography.hazmat.primitives import serialization
  5.  
  6. # Generate a DSA private key
  7. private_key = dsa.generate_private_key(
  8. key_size=2048,
  9. backend=default_backend()
  10. )
  11.  
  12. # Extract public key
  13. public_key = private_key.public_key()
  14.  
  15. # Message to sign
  16. message = b"Hello, Digital Signature!"
  17.  
  18. # Sign the message
  19. signature = private_key.sign(
  20. message,
  21. hashes.SHA256()
  22. )
  23.  
  24. # Verify the signature
  25. try:
  26. public_key.verify(
  27. signature,
  28. message,
  29. hashes.SHA256()
  30. )
  31. print("The signature is valid.")
  32. except Exception as e:
  33. print("The signature is invalid:", e)
  34.  
Success #stdin #stdout 2.53s 21264KB
stdin
Standard input is empty
stdout
The signature is valid.