I think this is ip encrypted. Can I write my IP this way?
[Only registered and activated users can see links. Click Here To Register...]
thanks
[Only registered and activated users can see links. Click Here To Register...]
thanks
static string EncryptOrDecrypt(string text, int[] key)
{
var result = new StringBuilder();
for (int c = 0; c < text.Length; c++)
result.Append((char)((uint)text[c] ^ (uint)key[c % key.Length]));
return result.ToString();
}