jellyfin/MediaBrowser.Model/Cryptography/PasswordHash.cs

128 lines
4.1 KiB
C#
Raw Normal View History

using System;
using System.Collections.Generic;
using System.Text;
namespace MediaBrowser.Model.Cryptography
{
public class PasswordHash
{
//Defined from this hash storage spec
//https://github.com/P-H-C/phc-string-format/blob/master/phc-sf-spec.md
//$<id>[$<param>=<value>(,<param>=<value>)*][$<salt>[$<hash>]]
public string Id;
public Dictionary<string, string> Parameters = new Dictionary<string, string>();
public string Salt;
public byte[] SaltBytes;
public string Hash;
public byte[] HashBytes;
public PasswordHash(string storageString)
{
string[] splitted = storageString.Split('$');
Id = splitted[1];
if (splitted[2].Contains("="))
{
foreach (string paramset in (splitted[2].Split(',')))
{
if (!String.IsNullOrEmpty(paramset))
{
string[] fields = paramset.Split('=');
if (fields.Length == 2)
{
Parameters.Add(fields[0], fields[1]);
}
else
{
throw new Exception($"Malformed parameter in password hash string {paramset}");
}
}
}
if (splitted.Length == 5)
{
Salt = splitted[3];
SaltBytes = ConvertFromByteString(Salt);
Hash = splitted[4];
HashBytes = ConvertFromByteString(Hash);
}
else
{
Salt = string.Empty;
Hash = splitted[3];
HashBytes = ConvertFromByteString(Hash);
}
}
else
{
if (splitted.Length == 4)
{
Salt = splitted[2];
SaltBytes = ConvertFromByteString(Salt);
Hash = splitted[3];
HashBytes = ConvertFromByteString(Hash);
}
else
{
Salt = string.Empty;
Hash = splitted[2];
HashBytes = ConvertFromByteString(Hash);
}
}
}
public PasswordHash(ICryptoProvider cryptoProvider)
{
Id = cryptoProvider.DefaultHashMethod;
SaltBytes = cryptoProvider.GenerateSalt();
Salt = ConvertToByteString(SaltBytes);
2019-02-12 11:16:03 +01:00
}
public static byte[] ConvertFromByteString(string byteString)
2019-02-12 11:16:03 +01:00
{
List<byte> Bytes = new List<byte>();
for (int i = 0; i < byteString.Length; i += 2)
2019-02-12 11:16:03 +01:00
{
Bytes.Add(Convert.ToByte(byteString.Substring(i, 2),16));
2019-02-12 11:16:03 +01:00
}
return Bytes.ToArray();
}
public static string ConvertToByteString(byte[] bytes)
{
return BitConverter.ToString(bytes).Replace("-", "");
}
private string SerializeParameters()
{
string ReturnString = String.Empty;
foreach (var KVP in Parameters)
{
ReturnString += String.Format(",{0}={1}", KVP.Key, KVP.Value);
}
2019-02-12 11:16:03 +01:00
if ((!string.IsNullOrEmpty(ReturnString)) && ReturnString[0] == ',')
{
ReturnString = ReturnString.Remove(0, 1);
}
return ReturnString;
}
public override string ToString()
2019-02-12 11:16:03 +01:00
{
string outString = "$" +Id;
string paramstring = SerializeParameters();
if (!string.IsNullOrEmpty(paramstring))
{
outString += $"${paramstring}";
}
2019-02-12 11:16:03 +01:00
if (!string.IsNullOrEmpty(Salt))
{
outString += $"${Salt}";
}
outString += $"${Hash}";
return outString;
}
}
}