我正在从文件转移到 MYSQL,我想使用 md5 而不是加密
public Encrypt(string[])
{
for(new x=0; x < strlen(string); x++)
{
string[x] += (3^x) * (x % 15);
if(string[x] > (0xff))
{
string[x] -= 256;
}
}
return 1;
}
但我需要解密它。我不知道如何制作解密功能。有谁能够帮我?