mirror of
https://github.com/islehorse/HISP.git
synced 2025-04-06 13:15:42 +12:00
88 lines
2.4 KiB
C#
88 lines
2.4 KiB
C#
|
|
using System.Security.Cryptography;
|
|
using System.Text;
|
|
using System.Linq;
|
|
|
|
using HISP.Server;
|
|
|
|
namespace HISP.Security
|
|
{
|
|
public class Authentication
|
|
{
|
|
public static string DecryptLogin(string encpass)
|
|
{
|
|
string decrypt = "";
|
|
string ROTPOOL = "bl7Jgk61IZdnY mfDN5zjM2XLqTCty4WSEoKR3BFVQsaUhHOAx0rPwp9uc8iGve";
|
|
string POSPOOL = "DQc3uxiGsKZatMmOS5qYveN71zoPTk8yU0H2w9VjprBXWn l4FJd6IRbhgACfEL";
|
|
string ROTPOOL2 = "evGi8cu9pwPr0xAOHhUasQVFB3RKoESW4ytCTqLX2Mjz5NDfm YndZI16kgJ7lb";
|
|
|
|
|
|
int i = 0;
|
|
int ii = 0;
|
|
while (i < encpass.Length)
|
|
{
|
|
int ROT = ROTPOOL.IndexOf(encpass[i].ToString());
|
|
int POS = POSPOOL.IndexOf(encpass[i + 1].ToString());
|
|
POS -= (ROT + ii);
|
|
if (POS < 0)
|
|
{
|
|
POS = (POS / -1) - 1;
|
|
|
|
while (POS >= ROTPOOL.Length)
|
|
{
|
|
POS -= ROTPOOL.Length;
|
|
}
|
|
|
|
decrypt += ROTPOOL2[POS];
|
|
}
|
|
else
|
|
{
|
|
while (POS >= ROTPOOL.Length)
|
|
{
|
|
POS -= ROTPOOL.Length;
|
|
}
|
|
|
|
decrypt += ROTPOOL[POS];
|
|
}
|
|
|
|
i += 2;
|
|
ii += 1;
|
|
}
|
|
return decrypt.Replace(" ", "");
|
|
}
|
|
|
|
|
|
|
|
public static byte[] HashAndSalt(string plaintext, byte[] salt)
|
|
{
|
|
byte[] plaintextBytes = Encoding.UTF8.GetBytes(plaintext);
|
|
|
|
SHA512 sha512 = SHA512.Create();
|
|
byte[] hash = sha512.ComputeHash(plaintextBytes);
|
|
|
|
for (int i = 0; i < hash.Length; i++)
|
|
{
|
|
hash[i] ^= salt[i];
|
|
}
|
|
|
|
byte[] finalHash = sha512.ComputeHash(hash);
|
|
|
|
return finalHash;
|
|
}
|
|
|
|
public static bool CheckPassword(string username, string password)
|
|
{
|
|
if(Database.CheckUserExist(username))
|
|
{
|
|
byte[] expectedPassword = Database.GetPasswordHash(username);
|
|
byte[] salt = Database.GetPasswordSalt(username);
|
|
byte[] hashedPassword = HashAndSalt(password, salt);
|
|
|
|
if (Enumerable.SequenceEqual(expectedPassword, hashedPassword))
|
|
return true;
|
|
}
|
|
return false;
|
|
}
|
|
|
|
}
|
|
}
|