blind-signature

Blinding a message with PyCrypto in Python 3+

Blinding a message with PyCrypto in Python 3+ Question: In Python 2, there were two methods called blind/unblind. Their docs recommend that you should now use pkcs1_15, however they only show how to sign/verify a message. Their sample code looks like this: from Crypto.Signature import pkcs1_15 from Crypto.Hash import SHA256 from Crypto.PublicKey import RSA # …

Total answers: 1