aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPatrick Barron <barronpm@gmail.com>2020-06-02 14:40:48 -0400
committerPatrick Barron <barronpm@gmail.com>2020-06-02 14:40:48 -0400
commitbb828d54c59e9118f7477de8defde4316f5d4f42 (patch)
tree2512efa8006e71faab4452e4aa83349bfe1f7fe9
parent585fdbad396a089e11717eb6ce52e60a07e900e9 (diff)
Remove unused methods
-rw-r--r--Jellyfin.Server.Implementations/Users/DefaultAuthenticationProvider.cs47
-rw-r--r--MediaBrowser.Model/Users/UserPolicy.cs1
2 files changed, 0 insertions, 48 deletions
diff --git a/Jellyfin.Server.Implementations/Users/DefaultAuthenticationProvider.cs b/Jellyfin.Server.Implementations/Users/DefaultAuthenticationProvider.cs
index 4261f5b18..b0c02030e 100644
--- a/Jellyfin.Server.Implementations/Users/DefaultAuthenticationProvider.cs
+++ b/Jellyfin.Server.Implementations/Users/DefaultAuthenticationProvider.cs
@@ -135,52 +135,5 @@ namespace Jellyfin.Server.Implementations.Users
? null
: Hex.Encode(PasswordHash.Parse(user.EasyPassword).Hash);
}
-
- /// <summary>
- /// Hashes the provided string.
- /// </summary>
- /// <param name="user">The user.</param>
- /// <param name="str">The string to hash.</param>
- /// <returns>The hashed string.</returns>
- public string GetHashedString(User user, string str)
- {
- if (string.IsNullOrEmpty(user.Password))
- {
- return _cryptographyProvider.CreatePasswordHash(str).ToString();
- }
-
- // TODO: make use of iterations parameter?
- PasswordHash passwordHash = PasswordHash.Parse(user.Password);
- var salt = passwordHash.Salt.ToArray();
- return new PasswordHash(
- passwordHash.Id,
- _cryptographyProvider.ComputeHash(
- passwordHash.Id,
- Encoding.UTF8.GetBytes(str),
- salt),
- salt,
- passwordHash.Parameters.ToDictionary(x => x.Key, y => y.Value)).ToString();
- }
-
- /// <summary>
- /// Hashes the provided string.
- /// </summary>
- /// <param name="user">The user.</param>
- /// <param name="str">The string to hash.</param>
- /// <returns>The hashed string.</returns>
- public ReadOnlySpan<byte> GetHashed(User user, string str)
- {
- if (string.IsNullOrEmpty(user.Password))
- {
- return _cryptographyProvider.CreatePasswordHash(str).Hash;
- }
-
- // TODO: make use of iterations parameter?
- PasswordHash passwordHash = PasswordHash.Parse(user.Password);
- return _cryptographyProvider.ComputeHash(
- passwordHash.Id,
- Encoding.UTF8.GetBytes(str),
- passwordHash.Salt.ToArray());
- }
}
}
diff --git a/MediaBrowser.Model/Users/UserPolicy.cs b/MediaBrowser.Model/Users/UserPolicy.cs
index 66e5529e3..c0f1df6af 100644
--- a/MediaBrowser.Model/Users/UserPolicy.cs
+++ b/MediaBrowser.Model/Users/UserPolicy.cs
@@ -3,7 +3,6 @@
using System;
using System.Xml.Serialization;
using Jellyfin.Data.Enums;
-using MediaBrowser.Model.Configuration;
using AccessSchedule = Jellyfin.Data.Entities.AccessSchedule;
namespace MediaBrowser.Model.Users