2019-01-31 08:24:53 +00:00
|
|
|
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[] a = StorageString.Split('$');
|
|
|
|
Id = a[1];
|
|
|
|
if (a[2].Contains("="))
|
|
|
|
{
|
|
|
|
foreach (string paramset in (a[2].Split(',')))
|
|
|
|
{
|
|
|
|
if (!String.IsNullOrEmpty(paramset))
|
|
|
|
{
|
|
|
|
string[] fields = paramset.Split('=');
|
|
|
|
Parameters.Add(fields[0], fields[1]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (a.Length == 4)
|
|
|
|
{
|
|
|
|
Salt = a[2];
|
2019-02-12 10:16:03 +00:00
|
|
|
SaltBytes = FromByteString(Salt);
|
2019-01-31 08:24:53 +00:00
|
|
|
Hash = a[3];
|
2019-02-12 10:16:03 +00:00
|
|
|
HashBytes = FromByteString(Hash);
|
2019-01-31 08:24:53 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
Salt = string.Empty;
|
|
|
|
Hash = a[3];
|
2019-02-12 10:16:03 +00:00
|
|
|
HashBytes = FromByteString(Hash);
|
2019-01-31 08:24:53 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (a.Length == 4)
|
|
|
|
{
|
|
|
|
Salt = a[2];
|
2019-02-12 10:16:03 +00:00
|
|
|
SaltBytes = FromByteString(Salt);
|
2019-01-31 08:24:53 +00:00
|
|
|
Hash = a[3];
|
2019-02-12 10:16:03 +00:00
|
|
|
HashBytes = FromByteString(Hash);
|
2019-01-31 08:24:53 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
Salt = string.Empty;
|
|
|
|
Hash = a[2];
|
2019-02-12 10:16:03 +00:00
|
|
|
HashBytes = FromByteString(Hash);
|
2019-01-31 08:24:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
public PasswordHash(ICryptoProvider cryptoProvider2)
|
|
|
|
{
|
|
|
|
Id = "SHA256";
|
|
|
|
SaltBytes = cryptoProvider2.GenerateSalt();
|
2019-02-12 10:16:03 +00:00
|
|
|
Salt = BitConverter.ToString(SaltBytes).Replace("-", "");
|
|
|
|
}
|
|
|
|
|
|
|
|
private byte[] FromByteString(string ByteString)
|
|
|
|
{
|
|
|
|
List<byte> Bytes = new List<byte>();
|
|
|
|
for (int i = 0; i < ByteString.Length; i += 2)
|
|
|
|
{
|
|
|
|
Bytes.Add(Convert.ToByte(ByteString.Substring(i, 2),16));
|
|
|
|
}
|
|
|
|
return Bytes.ToArray();
|
2019-01-31 08:24:53 +00:00
|
|
|
}
|
|
|
|
private string SerializeParameters()
|
|
|
|
{
|
|
|
|
string ReturnString = String.Empty;
|
|
|
|
foreach (var KVP in Parameters)
|
|
|
|
{
|
|
|
|
ReturnString += String.Format(",{0}={1}", KVP.Key, KVP.Value);
|
|
|
|
}
|
2019-02-12 10:16:03 +00:00
|
|
|
if ((!string.IsNullOrEmpty(ReturnString)) && ReturnString[0] == ',')
|
2019-01-31 08:24:53 +00:00
|
|
|
{
|
|
|
|
ReturnString = ReturnString.Remove(0, 1);
|
|
|
|
}
|
|
|
|
return ReturnString;
|
|
|
|
}
|
|
|
|
|
|
|
|
public override string ToString()
|
2019-02-12 10:16:03 +00:00
|
|
|
{
|
|
|
|
string OutString = "$";
|
|
|
|
OutString += Id;
|
|
|
|
if (!string.IsNullOrEmpty(SerializeParameters()))
|
|
|
|
OutString += $"${SerializeParameters()}";
|
|
|
|
if (!string.IsNullOrEmpty(Salt))
|
|
|
|
OutString += $"${Salt}";
|
|
|
|
OutString += $"${Hash}";
|
|
|
|
return OutString;
|
2019-01-31 08:24:53 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|