Advertisement
Guest User

Untitled

a guest
Oct 9th, 2018
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1.         Dim FileOut As Array
  2.  
  3.         Dim Key As String
  4.         Dim Output As String
  5.  
  6.  
  7.         FileOut = My.Computer.FileSystem.ReadAllText("C:\Users\Finla\Documents\Dev\Loop Zoop\Loop Zoop\p059_cipher.txt").Split(",").ToArray()
  8.         For I = 1 To FileOut.Length - 1
  9.             FileOut(I) = Asc(FileOut(I))
  10.         Next
  11.  
  12.         For I = 1 To FileOut.Length - 1
  13.             For X = 97 To 122
  14.                 For Y = 97 To 122
  15.                     For Z = 97 To 122
  16.                         Key = Chr(X) + Chr(Y) + Chr(Z)
  17.  
  18.                     Next
  19.                 Next
  20.             Next
  21.             'Console.WriteLine(FileOut(I))
  22.        Next
  23.     End Sub
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement