Advertisement
AndreSoYeah

WalCrypt

Nov 21st, 2014
240
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.05 KB | None | 0 0
  1. -- walCrypt by Andre A. Walia (walia6)
  2. -- liscensed under CreativeCommons Attribution.
  3. -- You may distribute,remix, tweak, and build
  4. -- upon my work, even commercially, as long as
  5. -- you credit me by my First, middle initial, and last name.
  6.  
  7.  --Find forum post on http://bit.ly/1r6HtNZ
  8.  
  9. function walCrypter(toHash)
  10.   a={}
  11.   for i=1,#toHash do
  12.     a[#a+1] = string.sub(toHash,i,i)
  13.   end
  14.   b = {}
  15.   c = 0
  16.   x={}
  17.   for k,v in pairs(a) do
  18.     x[#x+1] = string.byte(v)
  19.   end
  20.   for k,v in pairs(x) do
  21.     math.randomseed(k)
  22.     c=c+math.random(1,v)
  23.   end
  24.   d=0
  25.   for k,v in pairs(x) do
  26.     math.randomseed(c)
  27.     d=d+math.random(1,k)
  28.     math.randomseed(v)
  29.     d=d+math.random(1,v)
  30.   end
  31.   math.randomseed(c)
  32.   f=math.random(1,#a)
  33.   ending = ""
  34.   for i=1,f do
  35.     math.randomseed(x[#x])
  36.     x[#x+1] = math.random(1,i)
  37.   end
  38.   for k,v in pairs(x) do
  39.     ending = ending..v
  40.   end
  41.   ended = 0
  42.   ending=ending..""
  43.   for i=1,#ending do
  44.     ended = ended + tonumber(string.sub(ending,i,i))
  45.   end
  46.   return tonumber(ending)/tonumber(ended)
  47. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement