├── .gitignore ├── ChangeLog ├── LICENSE ├── Makefile ├── README.md ├── chunk.c ├── chunk.h ├── docs ├── Makefile ├── source │ ├── conf.py │ ├── index.rst │ ├── introduction.rst │ ├── problems.rst │ ├── static │ │ └── .keep │ ├── templates │ │ └── .keep │ ├── testing.rst │ └── usage.rst └── update ├── exec.c ├── exec.h ├── exit.c ├── exit.h ├── globals.h ├── keyfile.c ├── keyfile.h ├── logging.c ├── logging.h ├── luks.c ├── luks.h ├── luksipc.c ├── luksipc.h ├── mount.c ├── mount.h ├── parameters.c ├── parameters.h ├── random.c ├── random.h ├── shutdown.c ├── shutdown.h ├── tests ├── CornercaseTests.py ├── ReLUKSTests.py ├── SimpleTests.py ├── TestEngine.py ├── kill_list.txt ├── mkflakey ├── prng │ ├── Makefile │ └── prng_crc64.c ├── rmdm └── runtests ├── utils.c └── utils.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoe31415/luksipc/HEAD/.gitignore -------------------------------------------------------------------------------- /ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoe31415/luksipc/HEAD/ChangeLog -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoe31415/luksipc/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoe31415/luksipc/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoe31415/luksipc/HEAD/README.md -------------------------------------------------------------------------------- /chunk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoe31415/luksipc/HEAD/chunk.c -------------------------------------------------------------------------------- /chunk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoe31415/luksipc/HEAD/chunk.h -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoe31415/luksipc/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoe31415/luksipc/HEAD/docs/source/conf.py -------------------------------------------------------------------------------- /docs/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoe31415/luksipc/HEAD/docs/source/index.rst -------------------------------------------------------------------------------- /docs/source/introduction.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoe31415/luksipc/HEAD/docs/source/introduction.rst -------------------------------------------------------------------------------- /docs/source/problems.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoe31415/luksipc/HEAD/docs/source/problems.rst -------------------------------------------------------------------------------- /docs/source/static/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/source/templates/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/source/testing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoe31415/luksipc/HEAD/docs/source/testing.rst -------------------------------------------------------------------------------- /docs/source/usage.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoe31415/luksipc/HEAD/docs/source/usage.rst -------------------------------------------------------------------------------- /docs/update: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | make html 3 | -------------------------------------------------------------------------------- /exec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoe31415/luksipc/HEAD/exec.c -------------------------------------------------------------------------------- /exec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoe31415/luksipc/HEAD/exec.h -------------------------------------------------------------------------------- /exit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoe31415/luksipc/HEAD/exit.c -------------------------------------------------------------------------------- /exit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoe31415/luksipc/HEAD/exit.h -------------------------------------------------------------------------------- /globals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoe31415/luksipc/HEAD/globals.h -------------------------------------------------------------------------------- /keyfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoe31415/luksipc/HEAD/keyfile.c -------------------------------------------------------------------------------- /keyfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoe31415/luksipc/HEAD/keyfile.h -------------------------------------------------------------------------------- /logging.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoe31415/luksipc/HEAD/logging.c -------------------------------------------------------------------------------- /logging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoe31415/luksipc/HEAD/logging.h -------------------------------------------------------------------------------- /luks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoe31415/luksipc/HEAD/luks.c -------------------------------------------------------------------------------- /luks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoe31415/luksipc/HEAD/luks.h -------------------------------------------------------------------------------- /luksipc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoe31415/luksipc/HEAD/luksipc.c -------------------------------------------------------------------------------- /luksipc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoe31415/luksipc/HEAD/luksipc.h -------------------------------------------------------------------------------- /mount.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoe31415/luksipc/HEAD/mount.c -------------------------------------------------------------------------------- /mount.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoe31415/luksipc/HEAD/mount.h -------------------------------------------------------------------------------- /parameters.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoe31415/luksipc/HEAD/parameters.c -------------------------------------------------------------------------------- /parameters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoe31415/luksipc/HEAD/parameters.h -------------------------------------------------------------------------------- /random.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoe31415/luksipc/HEAD/random.c -------------------------------------------------------------------------------- /random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoe31415/luksipc/HEAD/random.h -------------------------------------------------------------------------------- /shutdown.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoe31415/luksipc/HEAD/shutdown.c -------------------------------------------------------------------------------- /shutdown.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoe31415/luksipc/HEAD/shutdown.h -------------------------------------------------------------------------------- /tests/CornercaseTests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoe31415/luksipc/HEAD/tests/CornercaseTests.py -------------------------------------------------------------------------------- /tests/ReLUKSTests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoe31415/luksipc/HEAD/tests/ReLUKSTests.py -------------------------------------------------------------------------------- /tests/SimpleTests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoe31415/luksipc/HEAD/tests/SimpleTests.py -------------------------------------------------------------------------------- /tests/TestEngine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoe31415/luksipc/HEAD/tests/TestEngine.py -------------------------------------------------------------------------------- /tests/kill_list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoe31415/luksipc/HEAD/tests/kill_list.txt -------------------------------------------------------------------------------- /tests/mkflakey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoe31415/luksipc/HEAD/tests/mkflakey -------------------------------------------------------------------------------- /tests/prng/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoe31415/luksipc/HEAD/tests/prng/Makefile -------------------------------------------------------------------------------- /tests/prng/prng_crc64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoe31415/luksipc/HEAD/tests/prng/prng_crc64.c -------------------------------------------------------------------------------- /tests/rmdm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoe31415/luksipc/HEAD/tests/rmdm -------------------------------------------------------------------------------- /tests/runtests: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoe31415/luksipc/HEAD/tests/runtests -------------------------------------------------------------------------------- /utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoe31415/luksipc/HEAD/utils.c -------------------------------------------------------------------------------- /utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndoe31415/luksipc/HEAD/utils.h --------------------------------------------------------------------------------