What endian should I expect for different crypto calls in .net 2? -
02-21-2007
, 02:39 PM
I am writing a network application and am trying to make since of the
MSDN docs. I have read in some posts that, for example, RSA key
information is stored in big endian. If so, what about when I do
something like byte[] sigOfH = provideRSA.SignData(byte[] buff, new
SHA1CryptoServiceProvider())? Is sigOfH in big endian as well? Also,
are all the crypto providers in .net expecting and giving big endian?
Thanks for your time,
Chris |