Clean up print statements in README example

Remove unnecessary print statement before displaying decrypted message.
This commit is contained in:
Bill Buchanan
2026-02-15 19:37:57 +00:00
committed by GitHub
parent 65dbc20980
commit b335dea7b0

View File

@@ -103,7 +103,6 @@ privKeyObj = RSA.importKey(binPrivKey)
cipher = PKCS1_OAEP.new(privKeyObj)
message = cipher.decrypt(ciphertext)
print
print ("====Decrypted===")
print ("Message:",message)
```