├── .github └── workflows │ └── test.yml ├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── luazen-0.16-1.rockspec ├── luazen-scm-1.rockspec ├── src ├── base64.c ├── luazen.c ├── lzma │ ├── 7zTypes.h │ ├── Alloc.c │ ├── Alloc.h │ ├── Compiler.h │ ├── LzFind.c │ ├── LzFind.h │ ├── LzHash.h │ ├── LzmaDec.c │ ├── LzmaDec.h │ ├── LzmaEnc.c │ ├── LzmaEnc.h │ ├── LzmaLib.c │ ├── LzmaLib.h │ ├── Precomp.h │ └── lualzma.c ├── md5.c ├── mono │ ├── luamonocypher.c │ ├── monocypher-LICENCE.md │ ├── monocypher-ed25519.c │ ├── monocypher-ed25519.h │ ├── monocypher.c │ └── monocypher.h └── random.c └── test └── test_luazen.lua /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philanc/luazen/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | devt/ 2 | *.i 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philanc/luazen/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philanc/luazen/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philanc/luazen/HEAD/README.md -------------------------------------------------------------------------------- /luazen-0.16-1.rockspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philanc/luazen/HEAD/luazen-0.16-1.rockspec -------------------------------------------------------------------------------- /luazen-scm-1.rockspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philanc/luazen/HEAD/luazen-scm-1.rockspec -------------------------------------------------------------------------------- /src/base64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philanc/luazen/HEAD/src/base64.c -------------------------------------------------------------------------------- /src/luazen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philanc/luazen/HEAD/src/luazen.c -------------------------------------------------------------------------------- /src/lzma/7zTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philanc/luazen/HEAD/src/lzma/7zTypes.h -------------------------------------------------------------------------------- /src/lzma/Alloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philanc/luazen/HEAD/src/lzma/Alloc.c -------------------------------------------------------------------------------- /src/lzma/Alloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philanc/luazen/HEAD/src/lzma/Alloc.h -------------------------------------------------------------------------------- /src/lzma/Compiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philanc/luazen/HEAD/src/lzma/Compiler.h -------------------------------------------------------------------------------- /src/lzma/LzFind.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philanc/luazen/HEAD/src/lzma/LzFind.c -------------------------------------------------------------------------------- /src/lzma/LzFind.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philanc/luazen/HEAD/src/lzma/LzFind.h -------------------------------------------------------------------------------- /src/lzma/LzHash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philanc/luazen/HEAD/src/lzma/LzHash.h -------------------------------------------------------------------------------- /src/lzma/LzmaDec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philanc/luazen/HEAD/src/lzma/LzmaDec.c -------------------------------------------------------------------------------- /src/lzma/LzmaDec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philanc/luazen/HEAD/src/lzma/LzmaDec.h -------------------------------------------------------------------------------- /src/lzma/LzmaEnc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philanc/luazen/HEAD/src/lzma/LzmaEnc.c -------------------------------------------------------------------------------- /src/lzma/LzmaEnc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philanc/luazen/HEAD/src/lzma/LzmaEnc.h -------------------------------------------------------------------------------- /src/lzma/LzmaLib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philanc/luazen/HEAD/src/lzma/LzmaLib.c -------------------------------------------------------------------------------- /src/lzma/LzmaLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philanc/luazen/HEAD/src/lzma/LzmaLib.h -------------------------------------------------------------------------------- /src/lzma/Precomp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philanc/luazen/HEAD/src/lzma/Precomp.h -------------------------------------------------------------------------------- /src/lzma/lualzma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philanc/luazen/HEAD/src/lzma/lualzma.c -------------------------------------------------------------------------------- /src/md5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philanc/luazen/HEAD/src/md5.c -------------------------------------------------------------------------------- /src/mono/luamonocypher.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philanc/luazen/HEAD/src/mono/luamonocypher.c -------------------------------------------------------------------------------- /src/mono/monocypher-LICENCE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philanc/luazen/HEAD/src/mono/monocypher-LICENCE.md -------------------------------------------------------------------------------- /src/mono/monocypher-ed25519.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philanc/luazen/HEAD/src/mono/monocypher-ed25519.c -------------------------------------------------------------------------------- /src/mono/monocypher-ed25519.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philanc/luazen/HEAD/src/mono/monocypher-ed25519.h -------------------------------------------------------------------------------- /src/mono/monocypher.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philanc/luazen/HEAD/src/mono/monocypher.c -------------------------------------------------------------------------------- /src/mono/monocypher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philanc/luazen/HEAD/src/mono/monocypher.h -------------------------------------------------------------------------------- /src/random.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philanc/luazen/HEAD/src/random.c -------------------------------------------------------------------------------- /test/test_luazen.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philanc/luazen/HEAD/test/test_luazen.lua --------------------------------------------------------------------------------