Advertisement
GreyPhantom

[Encrypt/Decrypt] Decrypt Function

May 26th, 2017
396
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
VB.NET 0.75 KB | None | 0 0
  1.   Dim rand1 As String
  2.   Dim rand2 As String
  3.   Dim rand3 As String
  4.   Dim rand4 As String
  5.   Dim rand5 As String
  6.   rand1 = "ageh2e"
  7.   rand2 = "878zwh2"
  8.   rand3 = "kknaefh31"
  9.   rand4 = "*aje!#$1n@3"
  10.   rand5 = "@$^!adfgag3%ra33"
  11.  
  12.   TextBox1.Text = TextBox1.Text.Replace(rand1, "a")
  13.   TextBox1.Text = TextBox1.Text.Replace(rand2, "e")
  14.   TextBox1.Text = TextBox1.Text.Replace(rand3, "i")
  15.   TextBox1.Text = TextBox1.Text.Replace(rand4, "o")
  16.   TextBox1.Text = TextBox1.Text.Replace(rand5, "u")
  17.   TextBox1.Text = TextBox1.Text.Replace(rand1, "a")
  18.   TextBox1.Text = TextBox1.Text.Replace(rand2, "e")
  19.   TextBox1.Text = TextBox1.Text.Replace(rand3, "i")
  20.   TextBox1.Text = TextBox1.Text.Replace(rand4, "o")
  21.   TextBox1.Text = TextBox1.Text.Replace(rand5, "u")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement