using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace
ProjectName.Network.Cryptography
{
using System.Text;
public
class
PasswordDecryption
{
static
byte[] Key =
new
byte[32] { 90, 45, 12, 17, 35, 66, 44, 1, 02, 41, 59, 32, 36, 2, 234, 1, 10, 2, 79, 73, 202, 31, 99, 75, 7, 34, 16, 35, 101, 226, 99, 152 };
public
static
string Decrypt(byte[] data)
{
int length = Key.Length;
for
(int x = 0; x < data.Length; x++)
{
data[x] ^= Key[x % length];
data[x] ^= Key[(x * 24 % 16) % length];
data[x] ^= Key[(x * 48 % 32) % length];
}
return
Encoding.Default.GetString(data);
}
}
}