File size: 513 Bytes
7e9dc27 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
local Lockbox = {};
--[[
package.path = "./?.lua;"
.. "./cipher/?.lua;"
.. "./digest/?.lua;"
.. "./kdf/?.lua;"
.. "./mac/?.lua;"
.. "./padding/?.lua;"
.. "./test/?.lua;"
.. "./util/?.lua;"
.. package.path;
]]--
Lockbox.ALLOW_INSECURE = false;
Lockbox.insecure = function()
assert(Lockbox.ALLOW_INSECURE,"This module is insecure! It should not be used in production. If you really want to use it, set Lockbox.ALLOW_INSECURE to true before importing it");
end
return Lockbox;
|