Eine kryptologische Hashfunktion ist eine spezielle Form der Hashfunktion, welche die besondere Eigenschaft einer Einwegfunktion besitzt.
http://de.wikipedia.org/wiki/Kryptologische_Hashfunktion
SHA512 shaM = new SHA512Managed();
string SHA512 = BitConverter.ToString(shaM.ComputeHash(Encoding.ASCII.GetBytes("My text"))).Replace("-", "").ToLower();
2 Kommentare zum Snippet