csharp 哈希密码等字符串
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了csharp 哈希密码等字符串相关的知识,希望对你有一定的参考价值。
using System;
using System.Security.Cryptography;
using System.Text;
namespace RWD.Toolbox.PasswordHelper
{
public interface IHashHelper
{
byte[] GenerateSalt();
byte[] HashBytes(byte[] toBeHashed, byte[] salt, int numberOfRounds);
string HashString(string toBeHashed, byte[] salt);
}
public class HashHelper : IHashHelper
{
public byte[] GenerateSalt()
{
var _random = new Random();
var randomNumber = new byte[32];
_random.NextBytes(randomNumber);
return randomNumber;
}
public byte[] HashBytes(byte[] toBeHashed, byte[] salt, int numberOfRounds)
{
using (var rfc2898 = new Rfc2898DeriveBytes(toBeHashed, salt, numberOfRounds))
{
return rfc2898.GetBytes(32);
}
}
public string HashString(string toBeHashed, byte[] salt)
{
salt = Encoding.UTF8.GetBytes("1TrnHEFDJT7SpUOIwRC94f9nYjMGLLQ8QvxG3RLuwYQ=");
byte[] hashedPassword = HashBytes(Encoding.UTF8.GetBytes(toBeHashed), salt, 50000);
return Convert.ToBase64String(hashedPassword);
}
}
}
以上是关于csharp 哈希密码等字符串的主要内容,如果未能解决你的问题,请参考以下文章
C#:使用来自 /etc/shadow 的 linux 用户的 salt 验证密码哈希 (SHA512)
如何在 SQL Server 2008 中转换文本字符串中的哈希密码
多次对咸味字符串进行哈希处理(自定义密码哈希)。
windows密码哈希的sam原理
哈希碰撞——密码哈希函数
从 MYSQL 数据库检索后,PHP 中的哈希密码不是字符串