aboutsummaryrefslogtreecommitdiff
path: root/src/Common/DevHive.Common.Models/Misc/PasswordModifications.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/Common/DevHive.Common.Models/Misc/PasswordModifications.cs')
-rw-r--r--src/Common/DevHive.Common.Models/Misc/PasswordModifications.cs13
1 files changed, 0 insertions, 13 deletions
diff --git a/src/Common/DevHive.Common.Models/Misc/PasswordModifications.cs b/src/Common/DevHive.Common.Models/Misc/PasswordModifications.cs
deleted file mode 100644
index f10a334..0000000
--- a/src/Common/DevHive.Common.Models/Misc/PasswordModifications.cs
+++ /dev/null
@@ -1,13 +0,0 @@
-using System.Security.Cryptography;
-using System.Text;
-
-namespace DevHive.Common.Models.Misc
-{
- public static class PasswordModifications
- {
- public static string GeneratePasswordHash(string password)
- {
- return string.Join(string.Empty, SHA512.HashData(Encoding.ASCII.GetBytes(password)));
- }
- }
-}