Advertisement
tobast

CC - 2factor_create

Apr 20th, 2014
113
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 6.21 KB | None | 0 0
  1. -------- SETTINGS ---------------------
  2. FLOPPY_SIDE="left"
  3. LABEL="Auth 0"
  4. -------- END SETTINGS -----------------
  5.  
  6. ------------------------------------------------------------
  7. ---- SHA-256 library, credits goes to GravityScore
  8. ---- from the ComputerCraft forum
  9. ------------------------------------------------------------
  10.  
  11. --  
  12. --  Adaptation of the Secure Hashing Algorithm (SHA-244/256)
  13. --  Found Here: http://lua-users.org/wiki/SecureHashAlgorithm
  14. --  
  15. --  Using an adapted version of the bit library
  16. --  Found Here: https://bitbucket.org/Boolsheet/bslf/src/1ee664885805/bit.lua
  17. --  
  18.  
  19. local MOD = 2^32
  20. local MODM = MOD-1
  21.  
  22. local function memoize(f)
  23.     local mt = {}
  24.     local t = setmetatable({}, mt)
  25.     function mt:__index(k)
  26.         local v = f(k)
  27.         t[k] = v
  28.         return v
  29.     end
  30.     return t
  31. end
  32.  
  33. local function make_bitop_uncached(t, m)
  34.     local function bitop(a, b)
  35.         local res,p = 0,1
  36.         while a ~= 0 and b ~= 0 do
  37.             local am, bm = a % m, b % m
  38.             res = res + t[am][bm] * p
  39.             a = (a - am) / m
  40.             b = (b - bm) / m
  41.             p = p*m
  42.         end
  43.         res = res + (a + b) * p
  44.         return res
  45.     end
  46.     return bitop
  47. end
  48.  
  49. local function make_bitop(t)
  50.     local op1 = make_bitop_uncached(t,2^1)
  51.     local op2 = memoize(function(a) return memoize(function(b) return op1(a, b) end) end)
  52.     return make_bitop_uncached(op2, 2 ^ (t.n or 1))
  53. end
  54.  
  55. local bxor1 = make_bitop({[0] = {[0] = 0,[1] = 1}, [1] = {[0] = 1, [1] = 0}, n = 4})
  56.  
  57. local function bxor(a, b, c, ...)
  58.     local z = nil
  59.     if b then
  60.         a = a % MOD
  61.         b = b % MOD
  62.         z = bxor1(a, b)
  63.         if c then z = bxor(z, c, ...) end
  64.         return z
  65.     elseif a then return a % MOD
  66.     else return 0 end
  67. end
  68.  
  69. local function band(a, b, c, ...)
  70.     local z
  71.     if b then
  72.         a = a % MOD
  73.         b = b % MOD
  74.         z = ((a + b) - bxor1(a,b)) / 2
  75.         if c then z = bit32_band(z, c, ...) end
  76.         return z
  77.     elseif a then return a % MOD
  78.     else return MODM end
  79. end
  80.  
  81. local function bnot(x) return (-1 - x) % MOD end
  82.  
  83. local function rshift1(a, disp)
  84.     if disp < 0 then return lshift(a,-disp) end
  85.     return math.floor(a % 2 ^ 32 / 2 ^ disp)
  86. end
  87.  
  88. local function rshift(x, disp)
  89.     if disp > 31 or disp < -31 then return 0 end
  90.     return rshift1(x % MOD, disp)
  91. end
  92.  
  93. local function lshift(a, disp)
  94.     if disp < 0 then return rshift(a,-disp) end
  95.     return (a * 2 ^ disp) % 2 ^ 32
  96. end
  97.  
  98. local function rrotate(x, disp)
  99.     x = x % MOD
  100.     disp = disp % 32
  101.     local low = band(x, 2 ^ disp - 1)
  102.     return rshift(x, disp) + lshift(low, 32 - disp)
  103. end
  104.  
  105. local k = {
  106.     0x428a2f98, 0x71374491, 0xb5c0fbcf, 0xe9b5dba5,
  107.     0x3956c25b, 0x59f111f1, 0x923f82a4, 0xab1c5ed5,
  108.     0xd807aa98, 0x12835b01, 0x243185be, 0x550c7dc3,
  109.     0x72be5d74, 0x80deb1fe, 0x9bdc06a7, 0xc19bf174,
  110.     0xe49b69c1, 0xefbe4786, 0x0fc19dc6, 0x240ca1cc,
  111.     0x2de92c6f, 0x4a7484aa, 0x5cb0a9dc, 0x76f988da,
  112.     0x983e5152, 0xa831c66d, 0xb00327c8, 0xbf597fc7,
  113.     0xc6e00bf3, 0xd5a79147, 0x06ca6351, 0x14292967,
  114.     0x27b70a85, 0x2e1b2138, 0x4d2c6dfc, 0x53380d13,
  115.     0x650a7354, 0x766a0abb, 0x81c2c92e, 0x92722c85,
  116.     0xa2bfe8a1, 0xa81a664b, 0xc24b8b70, 0xc76c51a3,
  117.     0xd192e819, 0xd6990624, 0xf40e3585, 0x106aa070,
  118.     0x19a4c116, 0x1e376c08, 0x2748774c, 0x34b0bcb5,
  119.     0x391c0cb3, 0x4ed8aa4a, 0x5b9cca4f, 0x682e6ff3,
  120.     0x748f82ee, 0x78a5636f, 0x84c87814, 0x8cc70208,
  121.     0x90befffa, 0xa4506ceb, 0xbef9a3f7, 0xc67178f2,
  122. }
  123.  
  124. local function str2hexa(s)
  125.     return (string.gsub(s, ".", function(c) return string.format("%02x", string.byte(c)) end))
  126. end
  127.  
  128. local function num2s(l, n)
  129.     local s = ""
  130.     for i = 1, n do
  131.         local rem = l % 256
  132.         s = string.char(rem) .. s
  133.         l = (l - rem) / 256
  134.     end
  135.     return s
  136. end
  137.  
  138. local function s232num(s, i)
  139.     local n = 0
  140.     for i = i, i + 3 do n = n*256 + string.byte(s, i) end
  141.     return n
  142. end
  143.  
  144. local function preproc(msg, len)
  145.     local extra = 64 - ((len + 9) % 64)
  146.     len = num2s(8 * len, 8)
  147.     msg = msg .. "\128" .. string.rep("\0", extra) .. len
  148.     assert(#msg % 64 == 0)
  149.     return msg
  150. end
  151.  
  152. local function initH256(H)
  153.     H[1] = 0x6a09e667
  154.     H[2] = 0xbb67ae85
  155.     H[3] = 0x3c6ef372
  156.     H[4] = 0xa54ff53a
  157.     H[5] = 0x510e527f
  158.     H[6] = 0x9b05688c
  159.     H[7] = 0x1f83d9ab
  160.     H[8] = 0x5be0cd19
  161.     return H
  162. end
  163.  
  164. local function digestblock(msg, i, H)
  165.     local w = {}
  166.     for j = 1, 16 do w[j] = s232num(msg, i + (j - 1)*4) end
  167.     for j = 17, 64 do
  168.         local v = w[j - 15]
  169.         local s0 = bxor(rrotate(v, 7), rrotate(v, 18), rshift(v, 3))
  170.         v = w[j - 2]
  171.         w[j] = w[j - 16] + s0 + w[j - 7] + bxor(rrotate(v, 17), rrotate(v, 19), rshift(v, 10))
  172.     end
  173.  
  174.     local a, b, c, d, e, f, g, h = H[1], H[2], H[3], H[4], H[5], H[6], H[7], H[8]
  175.     for i = 1, 64 do
  176.         local s0 = bxor(rrotate(a, 2), rrotate(a, 13), rrotate(a, 22))
  177.         local maj = bxor(band(a, b), band(a, c), band(b, c))
  178.         local t2 = s0 + maj
  179.         local s1 = bxor(rrotate(e, 6), rrotate(e, 11), rrotate(e, 25))
  180.         local ch = bxor (band(e, f), band(bnot(e), g))
  181.         local t1 = h + s1 + ch + k[i] + w[i]
  182.         h, g, f, e, d, c, b, a = g, f, e, d + t1, c, b, a, t1 + t2
  183.     end
  184.  
  185.     H[1] = band(H[1] + a)
  186.     H[2] = band(H[2] + b)
  187.     H[3] = band(H[3] + c)
  188.     H[4] = band(H[4] + d)
  189.     H[5] = band(H[5] + e)
  190.     H[6] = band(H[6] + f)
  191.     H[7] = band(H[7] + g)
  192.     H[8] = band(H[8] + h)
  193. end
  194.  
  195. local function sha256(msg)
  196.     msg = preproc(msg, #msg)
  197.     local H = initH256({})
  198.     for i = 1, #msg, 64 do digestblock(msg, i, H) end
  199.     return str2hexa(num2s(H[1], 4) .. num2s(H[2], 4) .. num2s(H[3], 4) .. num2s(H[4], 4) ..
  200.         num2s(H[5], 4) .. num2s(H[6], 4) .. num2s(H[7], 4) .. num2s(H[8], 4))
  201. end
  202.  
  203. --------------------------------------------
  204. ------- END LIBRARY ------------------------
  205. --------------------------------------------
  206.  
  207. function randomkey(size)
  208.     -- Produces hex text, fancier ;)
  209.     local out = "";
  210.     local hexchar = {'0','1','2','3','4','5','6','7','8','9','A','B','C','D','E','F'};
  211.     for i=1,size do
  212.         out = out .. hexchar[math.random(1,16)];
  213.     end
  214.     return out;
  215. end
  216.  
  217. function main()
  218.     if(not fs.exists("/disk/")) then
  219.         print("FATAL: no disk is mounted.");
  220.         return;
  221.     end
  222.     if(fs.exists("/disk/AUTH.key")) then
  223.         print("FATAL: AUTH.key is already present. Erase it manually if you really want to wipe the disk.");
  224.         return;
  225.     end
  226.  
  227.     local file = fs.open("/disk/AUTH.key", 'w');
  228.     local key = randomkey(1024);
  229.     file.write(key);
  230.     file.close();
  231.  
  232.     local db = fs.open("/keys",'a');
  233.     db.writeLine(sha256(key));
  234.     db.close();
  235.  
  236.     disk.setLabel(FLOPPY_SIDE, LABEL)
  237.  
  238.     print("Key written successfuly");
  239. end
  240.  
  241. main()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement