The question is pretty much self-explanatory. I Googled many sites, many methods, tried many encodings, but I can't get it to match.

I'm trying to make the string "asdasd" match. (http://www.fileformat.info/tool/hash.htm?text=asdasd)

link|improve this question

1  
PHP doesn't have a SHA-512 implementation as far as I know. Could you post the code you are using? – André Hoffmann Sep 13 '09 at 23:11
I was wrong. PHP does seem to support quite a few hash functions: php.net/hash – André Hoffmann Sep 13 '09 at 23:15
But I still would like to see the code you're using to answer this question. (sorry for the spamming the comments :-D ) – André Hoffmann Sep 13 '09 at 23:17
feedback

2 Answers

up vote 4 down vote accepted

Try this

using System.Security.Cryptography

public static string HashPassword(string unhashedPassword)
{
    return BitConverter.ToString(new SHA512CryptoServiceProvider().ComputeHash(Encoding.Default.GetBytes(unhashedPassword))).Replace("-", String.Empty).ToUpper();
}
link|improve this answer
1  
Easy, nice, small, fast lets say perfect! – Polo Jul 6 '10 at 12:33
feedback

BitConverter works just fine ...

var testVal = "asdasd";
var enc = new ASCIIEncoding();
var bytes = enc.GetBytes( testVal );

var sha = new SHA512Managed();
var result = sha.ComputeHash( bytes );

var resStr = BitConverter.ToString( result );
var nodash = resStr.Replace( "-", "" );

nodash.Dump();

(Fixed for 512-bit hash, sorry :)

link|improve this answer
I don't know if that's just a typo in your code, but he was asking for sha512, not sha256. – André Hoffmann Sep 13 '09 at 23: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.