Advertisement
Guest User

Untitled

a guest
Jul 22nd, 2019
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.68 KB | None | 0 0
  1. private static string Descrypt(string source, short shift)
  2. {
  3. int num = Convert.ToInt32('uffff');
  4. int num2 = Convert.ToInt32('');
  5. char[] array = source.ToCharArray();
  6. for (int i = 0; i < array.Length; i++)
  7. {
  8. int num3 = Convert.ToInt32(array[i]) + shift;
  9. if (num3 > num)
  10. {
  11. num3 -= num;
  12. }
  13. else if (num3 < num2)
  14. {
  15. num3 += num;
  16. }
  17. array[i] = Convert.ToChar(num3);
  18. }
  19. return new string(array);
  20. }
  21.  
  22.  
  23. Webbrowser1.Url = new Uri(Descrypt("AQUI É O CODIGO ENCRIPTADO", -8) + "1.1.php", UriKind.Absolute);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement