├── .gitignore ├── COPYING ├── INSTALL ├── Makefile.am ├── README.md ├── VERSION ├── autogen.sh ├── configure.ac ├── module ├── Makefile.am ├── config └── mega.sh └── src ├── Makefile.am └── crypto.c /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcrapet/plowshare-module-mega/HEAD/.gitignore -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcrapet/plowshare-module-mega/HEAD/COPYING -------------------------------------------------------------------------------- /INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcrapet/plowshare-module-mega/HEAD/INSTALL -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcrapet/plowshare-module-mega/HEAD/Makefile.am -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcrapet/plowshare-module-mega/HEAD/README.md -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 1.0.2 2 | -------------------------------------------------------------------------------- /autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcrapet/plowshare-module-mega/HEAD/autogen.sh -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcrapet/plowshare-module-mega/HEAD/configure.ac -------------------------------------------------------------------------------- /module/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcrapet/plowshare-module-mega/HEAD/module/Makefile.am -------------------------------------------------------------------------------- /module/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcrapet/plowshare-module-mega/HEAD/module/config -------------------------------------------------------------------------------- /module/mega.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcrapet/plowshare-module-mega/HEAD/module/mega.sh -------------------------------------------------------------------------------- /src/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcrapet/plowshare-module-mega/HEAD/src/Makefile.am -------------------------------------------------------------------------------- /src/crypto.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcrapet/plowshare-module-mega/HEAD/src/crypto.c --------------------------------------------------------------------------------