Howto take a glimpse into mscorlib?

Posted by panny on Stack Overflow See other posts from Stack Overflow or by panny
Published on 2010-05-31T13:35:35Z Indexed on 2010/05/31 13:43 UTC
Read the original article Hit count: 177

Filed under:
|
|

Hi all!

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.

© Stack Overflow or respective owner

Related posts about c#

Related posts about cryptoapi