我试图使用RSA实现挑战响应协议,其中一方是WCF服务,另一方是Windows 7.1客户端。我在.NET中使用本机实现
协议上说
但我不能让第三步开始工作。当我试图解密时,我在这一行中得到一个CryptographicException未知错误80007001:
decryptedChallengeBytes = rsaProvider.Decrypt(challengeBytes, false);我试过true和false。我该怎么办?
发布于 2013-08-21 23:42:52
我使用了VerifyHash方法。它使用散列输入并使用私钥签名,这正是我需要做的。
https://stackoverflow.com/questions/18346822
复制相似问题