I would like to use RSA blind signature in .NET. Is there a way to use the standard System.Security.Cryptography
APIs to achieve this?
The βobviousβ idea does not work:
using (var rsa = new RSACryptoServiceProvider()) signed = rsa.Decrypt(messageBytes, false);
I appreciate the dangers of blind signature, but for a moment ignore them. Also, I'm not interested in other types of digital signatures.
source share