Advertisement
Kolpa

decrypter

May 30th, 2012
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.73 KB | None | 0 0
  1. table1 = {"a","b","c","d","e","f","g","h","i","j","k","l","m","n","o","p","q","r","s","t","u","v","w","x","y","z"}
  2. table2 = {}
  3. table3 = {}
  4. output = ""
  5. shell.run("clear")
  6. print("enter the offset")
  7. offset = tonumber(read())
  8. print("enter the text")
  9. input = read()
  10.  
  11. if offset < 26 then
  12.  
  13.  
  14. for x=1, #table1+offset do
  15. if x <= #table1 then
  16. table.insert(table2,table1[x+offset])
  17. else
  18. table.insert(table2,table1[x-#table1])
  19. end
  20. end
  21.  
  22.  
  23. for x=1,string.len(input) do
  24. char = string.sub(input,x,x)
  25. table.insert(table3,char)
  26. end
  27.  
  28. for x=1,#table3 do
  29.     for z=1,#table2 do
  30.         if table2[z] == table3[x] then
  31.         output = output..table1[z]
  32.         end
  33.     end
  34. end
  35. print("the decrypted text:")
  36. print(output)
  37. else
  38. print("ERROR offset over 26")
  39. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement