:information_source: Looking For Maintainers
I'm afraid I've run out of free time to work on the Lockbox, so I'm looking for anyone interested in maintaining/growing the project. If you're interested, open an issue and request to be a collaborator.
The Lua Lockbox
A collection of cryptographic primitives and protocols written in pure Lua. This was written to provide cross-platform, tested reference implementations of many different cryptographic primitives. These are written to be easy to read and easy to use, not for performance!
Digests:
Message Authentication Codes (MACs):
Key Derivation Functions (KDFs):
Block Ciphers:
Block Cipher Modes:
Block Cipher Padding:
To use these cryptographic primitives in a project, you'll likely have to modify Lockbox.lua to change the module search path. All the primitives import this module to find the packages they require. See RunTests.lua as an example.
The cryptographic primitives are designed to work on streams of bytes. There are three data structures used to help with this: Array(a Lua array of bytes), Stream(an iterator that returns a series of bytes), and Queue(a FIFO pipe of bytes). See Array.lua, Stream.lua, and Queue.lua for more details.
Most cryptographic primitives are designed in a builder-style pattern. They usually have three functions: init, update, and finish. All of these functions will return the primitive, so you can chain functions calls together.
For examples of how to use the different primitives, read the test case files under tests.
Several weak or broken primitives are implemented in this library, for research or legacy reasons. These should not be used under normal circumstances! To restrict their usage, they have been marked as insecure, with the Lockbox.insecure() method. This will cause a failed assertion when you attempt to import the module, unless you set Lockbox.ALLOW_INSECURE to true before the import. For an example, see RunTests.lua.
lockbox
(or lockbox.init
)lockbox.cipher.aes128
lockbox.cipher.aes192
lockbox.cipher.aes256
lockbox.cipher.des3
lockbox.cipher.des
lockbox.cipher.mode.cbc
lockbox.cipher.mode.cfb
lockbox.cipher.mode.ctr
lockbox.cipher.mode.ecb
lockbox.cipher.mode.ige
lockbox.cipher.mode.ofb
lockbox.cipher.mode.pcbc
lockbox.digest.md2
lockbox.digest.md4
lockbox.digest.md5
lockbox.digest.ripemd128
lockbox.digest.ripemd160
lockbox.digest.sha1
lockbox.digest.sha2_224
lockbox.digest.sha2_256
lockbox.kdf.hkdf
lockbox.kdf.pbkdf2
lockbox.mac.hmac
lockbox.padding.ansix923
lockbox.padding.isoiec7816
lockbox.padding.pkcs7
lockbox.padding.zero
lockbox.util.base64
lockbox.util.array
lockbox.util.bit
lockbox.util.queue
lockbox.util.stream