|
SHA512 Hashfunktion
Author:
Guest
|
Programming Language:
C# |
Rating:
not yet rated
|
Views:
834 |
Description:
Eine kryptologische Hashfunktion ist eine spezielle Form der Hashfunktion, welche die besondere Eigenschaft einer Einwegfunktion besitzt.
http://de.wikipedia.org/wiki/Kryptologische_Hashfunktion
|
|
| C# |
1
2
|
SHA512 shaM = new SHA512Managed();
string SHA512 = BitConverter.ToString(shaM.ComputeHash(Encoding.ASCII.GetBytes("My text"))).Replace("-", "").ToLower();
|
|
|
This Snippets could be interesting for you:
|
|
|
|
|
|
|
|
Comments:
(Please log in to write an comment.)
|
|
|