Advertisement
ASP_Volume3 Security #62813

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

ИИ-обзор: 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.

Исходный код
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();
    }
Оригинальные комментарии (3)
Восстановлено из Wayback Machine