Best MD5 String Function
This is a pretty nice and clean MD5 sum for strings. Just Copy and Paste it in. Sorry if it gets bucherd by PSC
AI
AI-sammanfattning: This codebase represents a historical implementation of the logic described in the metadata. Our preservation engine analyzes the structure to provide context for modern developers.
Källkod
using System.Security.Cryptography;
static string MD5Str(string raw)
{
MD5 md5serv = MD5CryptoServiceProvider.Create();
byte[] hash;
StringBuilder stringbuff = new StringBuilder();
ASCIIEncoding asciienc = new ASCIIEncoding();
byte[] buffer = asciienc.GetBytes(raw);
hash = md5serv.ComputeHash(buffer);
foreach (byte b in hash)
{
stringbuff.Append(b.ToString("x2"));
}
return stringbuff.ToString();
}
Originalkommentarer (3)
Återställd från Wayback Machine