You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
799 B
30 lines
799 B
using Microsoft.AspNetCore.Cryptography.KeyDerivation;
|
|
using System.Security.Cryptography;
|
|
using System.Text;
|
|
|
|
namespace Blazor.Models;
|
|
|
|
public class PlayerModel
|
|
{
|
|
public int Id { get; set; }
|
|
public string Nickname { get; set; }
|
|
public string HashedPassword { get; set; }
|
|
|
|
public void HashPassword(string password)
|
|
{
|
|
using (MD5 md5 = MD5.Create())
|
|
{
|
|
byte[] inputBytes = Encoding.UTF8.GetBytes(password);
|
|
byte[] hashBytes = md5.ComputeHash(inputBytes);
|
|
|
|
StringBuilder sb = new StringBuilder();
|
|
for (int i = 0; i < hashBytes.Length; i++)
|
|
{
|
|
sb.Append(hashBytes[i].ToString("x2"));
|
|
}
|
|
|
|
HashedPassword = sb.ToString();
|
|
}
|
|
}
|
|
}
|