├── .github └── ISSUE_TEMPLATE │ └── issue-report.md ├── .gitignore ├── AUTHORS ├── COPYING ├── ChangeLog ├── Makefile.am ├── NEWS ├── README.md ├── autogen.sh ├── common ├── delivery.c ├── delivery.h ├── nettle │ ├── macros.h │ ├── nettle-types.h │ ├── nettle-write.h │ ├── sha2-internal.h │ ├── sha2.h │ ├── sha256-compress.c │ ├── sha256.c │ └── write-be32.c └── utils.h ├── configure.ac ├── m4 ├── ax_append_compile_flags.m4 ├── ax_append_flag.m4 ├── ax_check_compile_flag.m4 └── ax_require_defined.m4 └── source └── manager.c /.github/ISSUE_TEMPLATE/issue-report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switchbrew/contents-delivery-manager/HEAD/.github/ISSUE_TEMPLATE/issue-report.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switchbrew/contents-delivery-manager/HEAD/.gitignore -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switchbrew/contents-delivery-manager/HEAD/COPYING -------------------------------------------------------------------------------- /ChangeLog: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switchbrew/contents-delivery-manager/HEAD/Makefile.am -------------------------------------------------------------------------------- /NEWS: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switchbrew/contents-delivery-manager/HEAD/README.md -------------------------------------------------------------------------------- /autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switchbrew/contents-delivery-manager/HEAD/autogen.sh -------------------------------------------------------------------------------- /common/delivery.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switchbrew/contents-delivery-manager/HEAD/common/delivery.c -------------------------------------------------------------------------------- /common/delivery.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switchbrew/contents-delivery-manager/HEAD/common/delivery.h -------------------------------------------------------------------------------- /common/nettle/macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switchbrew/contents-delivery-manager/HEAD/common/nettle/macros.h -------------------------------------------------------------------------------- /common/nettle/nettle-types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switchbrew/contents-delivery-manager/HEAD/common/nettle/nettle-types.h -------------------------------------------------------------------------------- /common/nettle/nettle-write.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switchbrew/contents-delivery-manager/HEAD/common/nettle/nettle-write.h -------------------------------------------------------------------------------- /common/nettle/sha2-internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switchbrew/contents-delivery-manager/HEAD/common/nettle/sha2-internal.h -------------------------------------------------------------------------------- /common/nettle/sha2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switchbrew/contents-delivery-manager/HEAD/common/nettle/sha2.h -------------------------------------------------------------------------------- /common/nettle/sha256-compress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switchbrew/contents-delivery-manager/HEAD/common/nettle/sha256-compress.c -------------------------------------------------------------------------------- /common/nettle/sha256.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switchbrew/contents-delivery-manager/HEAD/common/nettle/sha256.c -------------------------------------------------------------------------------- /common/nettle/write-be32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switchbrew/contents-delivery-manager/HEAD/common/nettle/write-be32.c -------------------------------------------------------------------------------- /common/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switchbrew/contents-delivery-manager/HEAD/common/utils.h -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switchbrew/contents-delivery-manager/HEAD/configure.ac -------------------------------------------------------------------------------- /m4/ax_append_compile_flags.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switchbrew/contents-delivery-manager/HEAD/m4/ax_append_compile_flags.m4 -------------------------------------------------------------------------------- /m4/ax_append_flag.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switchbrew/contents-delivery-manager/HEAD/m4/ax_append_flag.m4 -------------------------------------------------------------------------------- /m4/ax_check_compile_flag.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switchbrew/contents-delivery-manager/HEAD/m4/ax_check_compile_flag.m4 -------------------------------------------------------------------------------- /m4/ax_require_defined.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switchbrew/contents-delivery-manager/HEAD/m4/ax_require_defined.m4 -------------------------------------------------------------------------------- /source/manager.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/switchbrew/contents-delivery-manager/HEAD/source/manager.c --------------------------------------------------------------------------------