Advertisement
6_2008-2009 Security #213146

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

Shrnutí AI: 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.

Zdrojový kód
original-source
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();
    }
Původní komentáře (3)
Obnoveno z Wayback Machine