c#:如何将字符串散列成RIPEMD160

本文关键字:RIPEMD160 字符串 | 更新日期: 2023-09-27 18:09:19

例如密码为"Hello World",如何将其返回为RIPEMD160哈希字符串?它应该返回一个字符串:"a830d7beb04eb7549ce990fb7dc962e499a27230"。我已经在互联网上搜索了我的问题的答案,但不是字符串的代码是关于加密文件到RIPEMD160。

c#:如何将字符串散列成RIPEMD160

好了,我已经知道这个问题的解决方法了。将字符串转换为字节,传递给RIPEMD160函数,创建StringBuilder并传递RIPEMD160函数返回的字节,将返回的StringBuilder转换为字符串并再次将其转换为小写。我为它创建了一个函数。下面是我的代码:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Security.Cryptography;
namespace Password
{
    class Program
    {
        static void Main(string[] args)
        {
            string thePassword = "Hello World";
            string theHash = getHash(thePassword);
            Console.WriteLine("String: " + thePassword);
            Console.WriteLine("Encrypted Hash: " + theHash);
            Console.ReadKey(true);
        }
        static string getHash(string password)
        {
            // create a ripemd160 object
            RIPEMD160 r160 = RIPEMD160Managed.Create();
            // convert the string to byte
            byte[] myByte = System.Text.Encoding.ASCII.GetBytes(password);
            // compute the byte to RIPEMD160 hash
            byte[] encrypted = r160.ComputeHash(myByte);
            // create a new StringBuilder process the hash byte
            StringBuilder sb = new StringBuilder();
            for (int i = 0; i < encrypted.Length; i++)
            {
                sb.Append(encrypted[i].ToString("X2"));
            }
            // convert the StringBuilder to String and convert it to lower case and return it.
            return sb.ToString().ToLower();
        }
    }
}