Advertisement
7_2009-2012 Security #235664

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 Summary: 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.

Source Code
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();
    }
Original Comments (3)
Recovered from Wayback Machine