├── .gitignore ├── .travis.yml ├── Doxyfile ├── LICENSE ├── Makefile ├── README.md ├── configure ├── runtests.py ├── src ├── Cipher.c ├── Cipher.h ├── CryptImpHook.c ├── CryptImpHook.h └── CryptImpHook_Conv.c ├── test_script.py └── test_script_b.py /.gitignore: -------------------------------------------------------------------------------- 1 | docs/* 2 | dist 3 | *.o 4 | *pye 5 | valgrind-python.supp 6 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | language: c 2 | -------------------------------------------------------------------------------- /Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurogeek/python-crypt-import-hooks/HEAD/Doxyfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurogeek/python-crypt-import-hooks/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurogeek/python-crypt-import-hooks/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurogeek/python-crypt-import-hooks/HEAD/README.md -------------------------------------------------------------------------------- /configure: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | #Dummy configure for Travis-CI 4 | exit 0 5 | -------------------------------------------------------------------------------- /runtests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurogeek/python-crypt-import-hooks/HEAD/runtests.py -------------------------------------------------------------------------------- /src/Cipher.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurogeek/python-crypt-import-hooks/HEAD/src/Cipher.c -------------------------------------------------------------------------------- /src/Cipher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurogeek/python-crypt-import-hooks/HEAD/src/Cipher.h -------------------------------------------------------------------------------- /src/CryptImpHook.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurogeek/python-crypt-import-hooks/HEAD/src/CryptImpHook.c -------------------------------------------------------------------------------- /src/CryptImpHook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurogeek/python-crypt-import-hooks/HEAD/src/CryptImpHook.h -------------------------------------------------------------------------------- /src/CryptImpHook_Conv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurogeek/python-crypt-import-hooks/HEAD/src/CryptImpHook_Conv.c -------------------------------------------------------------------------------- /test_script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurogeek/python-crypt-import-hooks/HEAD/test_script.py -------------------------------------------------------------------------------- /test_script_b.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurogeek/python-crypt-import-hooks/HEAD/test_script_b.py --------------------------------------------------------------------------------