aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Common/Cryptography/PasswordHash.cs
diff options
context:
space:
mode:
authorBond_009 <bond.009@outlook.com>2019-10-20 21:12:03 +0200
committerBond_009 <bond.009@outlook.com>2019-10-20 21:12:03 +0200
commitfef35d0505c6485954b1eb233a5ea67e33fe1138 (patch)
tree13c53aa1a6e295196ac935ea21e0c0dcc56f128c /MediaBrowser.Common/Cryptography/PasswordHash.cs
parentfdb0c3a1dff0c1e9c3c22a3be688b97ea0bd7a6d (diff)
Add clearer exceptions, warnings and docs
Diffstat (limited to 'MediaBrowser.Common/Cryptography/PasswordHash.cs')
-rw-r--r--MediaBrowser.Common/Cryptography/PasswordHash.cs6
1 files changed, 3 insertions, 3 deletions
diff --git a/MediaBrowser.Common/Cryptography/PasswordHash.cs b/MediaBrowser.Common/Cryptography/PasswordHash.cs
index 7741571db..1cb70675c 100644
--- a/MediaBrowser.Common/Cryptography/PasswordHash.cs
+++ b/MediaBrowser.Common/Cryptography/PasswordHash.cs
@@ -61,13 +61,13 @@ namespace MediaBrowser.Common.Cryptography
/// <value>Return the hashed password.</value>
public byte[] Hash { get; }
- public static PasswordHash Parse(string storageString)
+ public static PasswordHash Parse(string hashString)
{
- string[] splitted = storageString.Split('$');
+ string[] splitted = hashString.Split('$');
// The string should at least contain the hash function and the hash itself
if (splitted.Length < 3)
{
- throw new ArgumentException("String doesn't contain enough segments", nameof(storageString));
+ throw new ArgumentException("String doesn't contain enough segments", nameof(hashString));
}
// Start at 1, the first index shouldn't contain any data