├── .gitignore ├── Makefile ├── README.md ├── deps └── zlib │ ├── adler32.c │ ├── compress.c │ ├── crc32.c │ ├── crc32.h │ ├── deflate.c │ ├── deflate.h │ ├── gzclose.c │ ├── gzguts.h │ ├── gzlib.c │ ├── gzread.c │ ├── gzwrite.c │ ├── infback.c │ ├── inffast.c │ ├── inffast.h │ ├── inffixed.h │ ├── inflate.c │ ├── inflate.h │ ├── inftrees.c │ ├── inftrees.h │ ├── trees.c │ ├── trees.h │ ├── uncompr.c │ ├── zconf.h │ ├── zlib.h │ ├── zutil.c │ └── zutil.h ├── images ├── packing.png └── unpacking.png ├── src ├── tb_aes.c ├── tb_aes.h ├── tb_crc32.c ├── tb_crc32.h ├── tb_defs.h ├── tb_md5.c ├── tb_md5.h ├── tb_sha256.c ├── tb_sha256.h └── zxcfg.c ├── zxcfg.sln └── zxcfg.vcproj /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuleniwo/zxcfg/HEAD/.gitignore -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuleniwo/zxcfg/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuleniwo/zxcfg/HEAD/README.md -------------------------------------------------------------------------------- /deps/zlib/adler32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuleniwo/zxcfg/HEAD/deps/zlib/adler32.c -------------------------------------------------------------------------------- /deps/zlib/compress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuleniwo/zxcfg/HEAD/deps/zlib/compress.c -------------------------------------------------------------------------------- /deps/zlib/crc32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuleniwo/zxcfg/HEAD/deps/zlib/crc32.c -------------------------------------------------------------------------------- /deps/zlib/crc32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuleniwo/zxcfg/HEAD/deps/zlib/crc32.h -------------------------------------------------------------------------------- /deps/zlib/deflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuleniwo/zxcfg/HEAD/deps/zlib/deflate.c -------------------------------------------------------------------------------- /deps/zlib/deflate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuleniwo/zxcfg/HEAD/deps/zlib/deflate.h -------------------------------------------------------------------------------- /deps/zlib/gzclose.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuleniwo/zxcfg/HEAD/deps/zlib/gzclose.c -------------------------------------------------------------------------------- /deps/zlib/gzguts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuleniwo/zxcfg/HEAD/deps/zlib/gzguts.h -------------------------------------------------------------------------------- /deps/zlib/gzlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuleniwo/zxcfg/HEAD/deps/zlib/gzlib.c -------------------------------------------------------------------------------- /deps/zlib/gzread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuleniwo/zxcfg/HEAD/deps/zlib/gzread.c -------------------------------------------------------------------------------- /deps/zlib/gzwrite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuleniwo/zxcfg/HEAD/deps/zlib/gzwrite.c -------------------------------------------------------------------------------- /deps/zlib/infback.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuleniwo/zxcfg/HEAD/deps/zlib/infback.c -------------------------------------------------------------------------------- /deps/zlib/inffast.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuleniwo/zxcfg/HEAD/deps/zlib/inffast.c -------------------------------------------------------------------------------- /deps/zlib/inffast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuleniwo/zxcfg/HEAD/deps/zlib/inffast.h -------------------------------------------------------------------------------- /deps/zlib/inffixed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuleniwo/zxcfg/HEAD/deps/zlib/inffixed.h -------------------------------------------------------------------------------- /deps/zlib/inflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuleniwo/zxcfg/HEAD/deps/zlib/inflate.c -------------------------------------------------------------------------------- /deps/zlib/inflate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuleniwo/zxcfg/HEAD/deps/zlib/inflate.h -------------------------------------------------------------------------------- /deps/zlib/inftrees.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuleniwo/zxcfg/HEAD/deps/zlib/inftrees.c -------------------------------------------------------------------------------- /deps/zlib/inftrees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuleniwo/zxcfg/HEAD/deps/zlib/inftrees.h -------------------------------------------------------------------------------- /deps/zlib/trees.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuleniwo/zxcfg/HEAD/deps/zlib/trees.c -------------------------------------------------------------------------------- /deps/zlib/trees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuleniwo/zxcfg/HEAD/deps/zlib/trees.h -------------------------------------------------------------------------------- /deps/zlib/uncompr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuleniwo/zxcfg/HEAD/deps/zlib/uncompr.c -------------------------------------------------------------------------------- /deps/zlib/zconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuleniwo/zxcfg/HEAD/deps/zlib/zconf.h -------------------------------------------------------------------------------- /deps/zlib/zlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuleniwo/zxcfg/HEAD/deps/zlib/zlib.h -------------------------------------------------------------------------------- /deps/zlib/zutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuleniwo/zxcfg/HEAD/deps/zlib/zutil.c -------------------------------------------------------------------------------- /deps/zlib/zutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuleniwo/zxcfg/HEAD/deps/zlib/zutil.h -------------------------------------------------------------------------------- /images/packing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuleniwo/zxcfg/HEAD/images/packing.png -------------------------------------------------------------------------------- /images/unpacking.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuleniwo/zxcfg/HEAD/images/unpacking.png -------------------------------------------------------------------------------- /src/tb_aes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuleniwo/zxcfg/HEAD/src/tb_aes.c -------------------------------------------------------------------------------- /src/tb_aes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuleniwo/zxcfg/HEAD/src/tb_aes.h -------------------------------------------------------------------------------- /src/tb_crc32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuleniwo/zxcfg/HEAD/src/tb_crc32.c -------------------------------------------------------------------------------- /src/tb_crc32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuleniwo/zxcfg/HEAD/src/tb_crc32.h -------------------------------------------------------------------------------- /src/tb_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuleniwo/zxcfg/HEAD/src/tb_defs.h -------------------------------------------------------------------------------- /src/tb_md5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuleniwo/zxcfg/HEAD/src/tb_md5.c -------------------------------------------------------------------------------- /src/tb_md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuleniwo/zxcfg/HEAD/src/tb_md5.h -------------------------------------------------------------------------------- /src/tb_sha256.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuleniwo/zxcfg/HEAD/src/tb_sha256.c -------------------------------------------------------------------------------- /src/tb_sha256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuleniwo/zxcfg/HEAD/src/tb_sha256.h -------------------------------------------------------------------------------- /src/zxcfg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuleniwo/zxcfg/HEAD/src/zxcfg.c -------------------------------------------------------------------------------- /zxcfg.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuleniwo/zxcfg/HEAD/zxcfg.sln -------------------------------------------------------------------------------- /zxcfg.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuleniwo/zxcfg/HEAD/zxcfg.vcproj --------------------------------------------------------------------------------