SHA512Managed is missing in Silverlight (for Windows Phone 7 CTP SDK), only upto SHA256 is available for use. Does anyone know a .NET class that I could use that offers a self-contained C# or VB.net SHA512 implementation?

I need to use this for authentication to a HTTP web service.

link|improve this question

70% accept rate
feedback

3 Answers

up vote 2 down vote accepted

Using HashLib from http://hashlib.codeplex.com/ will work fine. There is methods within HashLib.HashFactory.HashCryptoNotBuildIn that do not require System.Crytography

link|improve this answer
1  
I am wondering how can I use this library in Silverlight because the HasLih.dll cannot be imported...Also, I cannot compile the project for SilverLight... – Cristian Boariu Feb 24 '11 at 7:49
You would need to just move over the code you need instead of importing the whole library. – Luke Feb 28 '11 at 2:24
feedback

Mono has an implementation you could probably use, provided you are happy with the OS license.

https://github.com/mono/mono/blob/master/mcs/class/corlib/System.Security.Cryptography/SHA512Managed.cs

link|improve this answer
feedback

Silverlight does not contain the System.Security.Cryptogray namespace. However, you could always port the open source BeeCrypt Cryptography Library (written in C), and use it directly in Silverlight.

http://www.koders.com/info.aspx?c=ProjectInfo&pid=VZ53QH5WTR5UV7LWXYVDKP7P3G

link|improve this answer
1  
Sorry, I am asking for an existing .NET class. – Luke Mar 17 '10 at 4:36
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.