Calculate a MD5 hash from a string

后端 未结 16 2126
独厮守ぢ
独厮守ぢ 2020-11-28 21:06

I use the following C# code to calculate a MD5 hash from a string. It works well and generates a 32-character hex string like this: 900150983cd24fb0d6963f7d28e17f72

16条回答
  •  佛祖请我去吃肉
    2020-11-28 22:08

    Idk anything about 16 character hex strings....

    using System;
    using System.Security.Cryptography;
    using System.Text;
    

    But here is mine for creating MD5 hash in one line.

    string hash = BitConverter.ToString(MD5.Create().ComputeHash(Encoding.ASCII.GetBytes("THIS STRING TO MD5"))).Replace("-","");
    

提交回复
热议问题