shuffled some files around

This commit is contained in:
kepler155c@gmail.com
2019-07-01 17:22:19 -04:00
parent 61a26d7c55
commit 9e85a0dae1
8 changed files with 33 additions and 17 deletions

View File

@@ -164,7 +164,7 @@ local function decrypt(data, key)
data = Util.hexToByteArray(data[2])
key = sha2.digest(key)
local ptx = crypt(data, key, nonce, 1, ROUNDS)
return cbor.decode(tostring(ptx))
return cbor.decode(tostring(ptx))
end
local obj = {}