panny
panny

Reputation: 2212

Howto take a glimpse into mscorlib?

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.

Upvotes: 2

Views: 517

Answers (2)

BrettWatts
BrettWatts

Reputation: 87

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

Upvotes: 0

axel_c
axel_c

Reputation: 6796

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

Upvotes: 2

Related Questions