如何快速了解 mscorlib?

发布于 2024-09-03 19:00:22 字数 706 浏览 7 评论 0 原文

我想将数据读入 RSAParameters 结构 (RSAParameters)并检查了两次,数据是否正确。但是,我仍然收到错误“无效数据”异常:

   bei System.Security.Cryptography.CryptographicException.ThrowCryptogaphicException(Int32 hr)
   bei System.Security.Cryptography.Utils._ImportKey(SafeProvHandle hCSP, Int32 keyNumber, CspProviderFlags flags, Object cspObject, SafeKeyHandle& hKey)
   bei System.Security.Cryptography.RSACryptoServiceProvider.ImportParameters(RSAParameters parameters)

如何查看源代码以检查 _ImportKeys 抛出异常的原因?我没有 .dll“解密”的经验..是否有任何符号可以在 Visual Studio 8.0 的某处引用?谢谢。

I want to read data into RSAParameters structure ( RSAParameters ) and did check twice, that the data is correct. But still, I get an error "invalid data" exception for this:

   bei System.Security.Cryptography.CryptographicException.ThrowCryptogaphicException(Int32 hr)
   bei System.Security.Cryptography.Utils._ImportKey(SafeProvHandle hCSP, Int32 keyNumber, CspProviderFlags flags, Object cspObject, SafeKeyHandle& hKey)
   bei System.Security.Cryptography.RSACryptoServiceProvider.ImportParameters(RSAParameters parameters)

How can I take a look into the source code to check why _ImportKeys is throwing an exception? I have no experience with .dll 'decryption'..are there any symbols to reference somewhere for visual studio 8.0? Thank you.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

土豪 2024-09-10 19:00:22

使用 .NET Reflector 反汇编您要检查的 DLL。

Use .NET Reflector to disassemble the DLL you want to examine.

比忠 2024-09-10 19:00:22

您还可以使用 JetBrains dotPeek。它是 100% 免费的。

You can also use JetBrains dotPeek. It is 100% free.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文