├── LICENSE.jtr ├── README.md ├── algo_aes_decrypt.py ├── algo_aes_encrypt.py ├── algo_crypt_sha2.py ├── algo_groestl512.py ├── algo_hfun_sha512.py ├── algo_hmac-sha512.py ├── algo_include_aes.py ├── algo_iuf.py ├── algo_jh512.py ├── algo_lib.py ├── algo_lm.py ├── algo_md4.py ├── algo_md5.py ├── algo_padding.py ├── algo_pbkdf2-hmac-sha512.py ├── algo_ripemd160.py ├── algo_sha1.py ├── algo_sha1_registers.py ├── algo_sha256.py ├── algo_sha256_registers.py ├── algo_sha256_registers2.py ├── algo_sha256_registers3.py ├── algo_sha512.py ├── algo_skein512.py ├── algo_tables_aes.py ├── algo_tiger.py ├── algo_truecrypt_sha512.py ├── algo_whirlpool.py ├── algo_xtea.py ├── bytecode_bitslice.py ├── bytecode_interpreter.py ├── bytecode_main.py ├── bytecode_util.py ├── dk.py ├── format_abstract_all.py ├── format_experimental_sha256.py ├── format_experimental_xtea.py ├── format_john_all.py ├── format_john_groestl512.py ├── format_john_jh512.py ├── format_john_lm.py ├── format_john_lm_bs.py ├── format_john_md4.py ├── format_john_md5.py ├── format_john_pow_skeincoin.py ├── format_john_sha1.py ├── format_john_sha224.py ├── format_john_sha256.py ├── format_john_sha384.py ├── format_john_sha512.py ├── format_john_skein512.py ├── format_john_truecrypt.py ├── format_sbox_aes.py ├── hash_tests ├── john_crc32.c ├── john_gost.c ├── john_hmac-sha512.c ├── john_my_aes_encrypt.c ├── john_pbkdf2-hmac-md4.c ├── john_pbkdf2-hmac-md5.c ├── john_pbkdf2-hmac-sha1.c ├── john_pbkdf2-hmac-sha256.c ├── john_pbkdf2-hmac-sha512.c ├── john_raw-md2.c ├── john_raw-md4.c ├── john_raw-md5.c ├── john_raw-sha1.c ├── john_raw-sha224.c ├── john_raw-sha256.c ├── john_raw-sha384.c ├── john_raw-sha512.c ├── john_ripemd-128.c ├── john_ripemd-160.c ├── john_tiger.c ├── john_truecrypt_sha512.c └── john_whirlpool.c ├── john_crc32.c ├── john_gost.c ├── john_hmac-sha512.c ├── john_my_aes_encrypt.c ├── john_pbkdf2-hmac-md4.c ├── john_pbkdf2-hmac-md5.c ├── john_pbkdf2-hmac-sha1.c ├── john_pbkdf2-hmac-sha256.c ├── john_pbkdf2-hmac-sha512.c ├── john_raw-md2.c ├── john_raw-md4.c ├── john_raw-md5.c ├── john_raw-sha1.c ├── john_raw-sha224.c ├── john_raw-sha256.c ├── john_raw-sha384.c ├── john_raw-sha512.c ├── john_ripemd-128.c ├── john_ripemd-160.c ├── john_tiger.c ├── john_truecrypt_sha512.c ├── john_whirlpool.c ├── lang_main.py ├── lang_spec.py ├── lang_tools.py ├── output_c.py ├── output_c_modules.py ├── parsing.h ├── parsing_plug.c ├── run_format_raw.sh ├── simple_aes.py ├── simple_asm.c ├── simple_bit_layout.c ├── simple_des_sboxes.pl ├── simple_example.py ├── simple_hmac.py ├── simple_lm.c ├── simple_lm.py ├── simple_pbkdf2.py ├── simple_with_eval.py ├── slides_2015-05-26_phdays_v.src.org ├── slides_2016-05-17_phdays_vi.src.org ├── t_john_dyna_pw.c ├── t_john_simple.c ├── t_john_truecrypt.c ├── t_lm.c ├── t_lm_bs.c ├── t_ocl_test.cl ├── t_raw.c ├── t_raw2.c ├── t_tester.c ├── tool_bs_verify.py ├── tool_extract_bs_sbox.pl ├── util_build.py ├── util_main.py └── util_ui.py /LICENSE.jtr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlekseyCherepanov/john-devkit/HEAD/LICENSE.jtr -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlekseyCherepanov/john-devkit/HEAD/README.md -------------------------------------------------------------------------------- /algo_aes_decrypt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlekseyCherepanov/john-devkit/HEAD/algo_aes_decrypt.py -------------------------------------------------------------------------------- /algo_aes_encrypt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlekseyCherepanov/john-devkit/HEAD/algo_aes_encrypt.py -------------------------------------------------------------------------------- /algo_crypt_sha2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlekseyCherepanov/john-devkit/HEAD/algo_crypt_sha2.py -------------------------------------------------------------------------------- /algo_groestl512.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlekseyCherepanov/john-devkit/HEAD/algo_groestl512.py -------------------------------------------------------------------------------- /algo_hfun_sha512.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlekseyCherepanov/john-devkit/HEAD/algo_hfun_sha512.py -------------------------------------------------------------------------------- /algo_hmac-sha512.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlekseyCherepanov/john-devkit/HEAD/algo_hmac-sha512.py -------------------------------------------------------------------------------- /algo_include_aes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlekseyCherepanov/john-devkit/HEAD/algo_include_aes.py -------------------------------------------------------------------------------- /algo_iuf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlekseyCherepanov/john-devkit/HEAD/algo_iuf.py -------------------------------------------------------------------------------- /algo_jh512.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlekseyCherepanov/john-devkit/HEAD/algo_jh512.py -------------------------------------------------------------------------------- /algo_lib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlekseyCherepanov/john-devkit/HEAD/algo_lib.py -------------------------------------------------------------------------------- /algo_lm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlekseyCherepanov/john-devkit/HEAD/algo_lm.py -------------------------------------------------------------------------------- /algo_md4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlekseyCherepanov/john-devkit/HEAD/algo_md4.py -------------------------------------------------------------------------------- /algo_md5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlekseyCherepanov/john-devkit/HEAD/algo_md5.py -------------------------------------------------------------------------------- /algo_padding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlekseyCherepanov/john-devkit/HEAD/algo_padding.py -------------------------------------------------------------------------------- /algo_pbkdf2-hmac-sha512.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlekseyCherepanov/john-devkit/HEAD/algo_pbkdf2-hmac-sha512.py -------------------------------------------------------------------------------- /algo_ripemd160.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlekseyCherepanov/john-devkit/HEAD/algo_ripemd160.py -------------------------------------------------------------------------------- /algo_sha1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlekseyCherepanov/john-devkit/HEAD/algo_sha1.py -------------------------------------------------------------------------------- /algo_sha1_registers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlekseyCherepanov/john-devkit/HEAD/algo_sha1_registers.py -------------------------------------------------------------------------------- /algo_sha256.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlekseyCherepanov/john-devkit/HEAD/algo_sha256.py -------------------------------------------------------------------------------- /algo_sha256_registers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlekseyCherepanov/john-devkit/HEAD/algo_sha256_registers.py -------------------------------------------------------------------------------- /algo_sha256_registers2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlekseyCherepanov/john-devkit/HEAD/algo_sha256_registers2.py -------------------------------------------------------------------------------- /algo_sha256_registers3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlekseyCherepanov/john-devkit/HEAD/algo_sha256_registers3.py -------------------------------------------------------------------------------- /algo_sha512.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlekseyCherepanov/john-devkit/HEAD/algo_sha512.py -------------------------------------------------------------------------------- /algo_skein512.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlekseyCherepanov/john-devkit/HEAD/algo_skein512.py -------------------------------------------------------------------------------- /algo_tables_aes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlekseyCherepanov/john-devkit/HEAD/algo_tables_aes.py -------------------------------------------------------------------------------- /algo_tiger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlekseyCherepanov/john-devkit/HEAD/algo_tiger.py -------------------------------------------------------------------------------- /algo_truecrypt_sha512.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlekseyCherepanov/john-devkit/HEAD/algo_truecrypt_sha512.py -------------------------------------------------------------------------------- /algo_whirlpool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlekseyCherepanov/john-devkit/HEAD/algo_whirlpool.py -------------------------------------------------------------------------------- /algo_xtea.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlekseyCherepanov/john-devkit/HEAD/algo_xtea.py -------------------------------------------------------------------------------- /bytecode_bitslice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlekseyCherepanov/john-devkit/HEAD/bytecode_bitslice.py -------------------------------------------------------------------------------- /bytecode_interpreter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlekseyCherepanov/john-devkit/HEAD/bytecode_interpreter.py -------------------------------------------------------------------------------- /bytecode_main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlekseyCherepanov/john-devkit/HEAD/bytecode_main.py -------------------------------------------------------------------------------- /bytecode_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlekseyCherepanov/john-devkit/HEAD/bytecode_util.py -------------------------------------------------------------------------------- /dk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlekseyCherepanov/john-devkit/HEAD/dk.py -------------------------------------------------------------------------------- /format_abstract_all.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlekseyCherepanov/john-devkit/HEAD/format_abstract_all.py -------------------------------------------------------------------------------- /format_experimental_sha256.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlekseyCherepanov/john-devkit/HEAD/format_experimental_sha256.py -------------------------------------------------------------------------------- /format_experimental_xtea.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlekseyCherepanov/john-devkit/HEAD/format_experimental_xtea.py -------------------------------------------------------------------------------- /format_john_all.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlekseyCherepanov/john-devkit/HEAD/format_john_all.py -------------------------------------------------------------------------------- /format_john_groestl512.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlekseyCherepanov/john-devkit/HEAD/format_john_groestl512.py -------------------------------------------------------------------------------- /format_john_jh512.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlekseyCherepanov/john-devkit/HEAD/format_john_jh512.py -------------------------------------------------------------------------------- /format_john_lm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlekseyCherepanov/john-devkit/HEAD/format_john_lm.py -------------------------------------------------------------------------------- /format_john_lm_bs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlekseyCherepanov/john-devkit/HEAD/format_john_lm_bs.py -------------------------------------------------------------------------------- /format_john_md4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlekseyCherepanov/john-devkit/HEAD/format_john_md4.py -------------------------------------------------------------------------------- /format_john_md5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlekseyCherepanov/john-devkit/HEAD/format_john_md5.py -------------------------------------------------------------------------------- /format_john_pow_skeincoin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlekseyCherepanov/john-devkit/HEAD/format_john_pow_skeincoin.py -------------------------------------------------------------------------------- /format_john_sha1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlekseyCherepanov/john-devkit/HEAD/format_john_sha1.py -------------------------------------------------------------------------------- /format_john_sha224.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlekseyCherepanov/john-devkit/HEAD/format_john_sha224.py -------------------------------------------------------------------------------- /format_john_sha256.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlekseyCherepanov/john-devkit/HEAD/format_john_sha256.py -------------------------------------------------------------------------------- /format_john_sha384.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlekseyCherepanov/john-devkit/HEAD/format_john_sha384.py -------------------------------------------------------------------------------- /format_john_sha512.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlekseyCherepanov/john-devkit/HEAD/format_john_sha512.py -------------------------------------------------------------------------------- /format_john_skein512.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlekseyCherepanov/john-devkit/HEAD/format_john_skein512.py -------------------------------------------------------------------------------- /format_john_truecrypt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlekseyCherepanov/john-devkit/HEAD/format_john_truecrypt.py -------------------------------------------------------------------------------- /format_sbox_aes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlekseyCherepanov/john-devkit/HEAD/format_sbox_aes.py -------------------------------------------------------------------------------- /hash_tests/john_crc32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlekseyCherepanov/john-devkit/HEAD/hash_tests/john_crc32.c -------------------------------------------------------------------------------- /hash_tests/john_gost.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlekseyCherepanov/john-devkit/HEAD/hash_tests/john_gost.c -------------------------------------------------------------------------------- /hash_tests/john_hmac-sha512.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlekseyCherepanov/john-devkit/HEAD/hash_tests/john_hmac-sha512.c -------------------------------------------------------------------------------- /hash_tests/john_my_aes_encrypt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlekseyCherepanov/john-devkit/HEAD/hash_tests/john_my_aes_encrypt.c -------------------------------------------------------------------------------- /hash_tests/john_pbkdf2-hmac-md4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlekseyCherepanov/john-devkit/HEAD/hash_tests/john_pbkdf2-hmac-md4.c -------------------------------------------------------------------------------- /hash_tests/john_pbkdf2-hmac-md5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlekseyCherepanov/john-devkit/HEAD/hash_tests/john_pbkdf2-hmac-md5.c -------------------------------------------------------------------------------- /hash_tests/john_pbkdf2-hmac-sha1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlekseyCherepanov/john-devkit/HEAD/hash_tests/john_pbkdf2-hmac-sha1.c -------------------------------------------------------------------------------- /hash_tests/john_pbkdf2-hmac-sha256.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlekseyCherepanov/john-devkit/HEAD/hash_tests/john_pbkdf2-hmac-sha256.c -------------------------------------------------------------------------------- /hash_tests/john_pbkdf2-hmac-sha512.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlekseyCherepanov/john-devkit/HEAD/hash_tests/john_pbkdf2-hmac-sha512.c -------------------------------------------------------------------------------- /hash_tests/john_raw-md2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlekseyCherepanov/john-devkit/HEAD/hash_tests/john_raw-md2.c -------------------------------------------------------------------------------- /hash_tests/john_raw-md4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlekseyCherepanov/john-devkit/HEAD/hash_tests/john_raw-md4.c -------------------------------------------------------------------------------- /hash_tests/john_raw-md5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlekseyCherepanov/john-devkit/HEAD/hash_tests/john_raw-md5.c -------------------------------------------------------------------------------- /hash_tests/john_raw-sha1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlekseyCherepanov/john-devkit/HEAD/hash_tests/john_raw-sha1.c -------------------------------------------------------------------------------- /hash_tests/john_raw-sha224.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlekseyCherepanov/john-devkit/HEAD/hash_tests/john_raw-sha224.c -------------------------------------------------------------------------------- /hash_tests/john_raw-sha256.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlekseyCherepanov/john-devkit/HEAD/hash_tests/john_raw-sha256.c -------------------------------------------------------------------------------- /hash_tests/john_raw-sha384.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlekseyCherepanov/john-devkit/HEAD/hash_tests/john_raw-sha384.c -------------------------------------------------------------------------------- /hash_tests/john_raw-sha512.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlekseyCherepanov/john-devkit/HEAD/hash_tests/john_raw-sha512.c -------------------------------------------------------------------------------- /hash_tests/john_ripemd-128.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlekseyCherepanov/john-devkit/HEAD/hash_tests/john_ripemd-128.c -------------------------------------------------------------------------------- /hash_tests/john_ripemd-160.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlekseyCherepanov/john-devkit/HEAD/hash_tests/john_ripemd-160.c -------------------------------------------------------------------------------- /hash_tests/john_tiger.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlekseyCherepanov/john-devkit/HEAD/hash_tests/john_tiger.c -------------------------------------------------------------------------------- /hash_tests/john_truecrypt_sha512.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlekseyCherepanov/john-devkit/HEAD/hash_tests/john_truecrypt_sha512.c -------------------------------------------------------------------------------- /hash_tests/john_whirlpool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlekseyCherepanov/john-devkit/HEAD/hash_tests/john_whirlpool.c -------------------------------------------------------------------------------- /john_crc32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlekseyCherepanov/john-devkit/HEAD/john_crc32.c -------------------------------------------------------------------------------- /john_gost.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlekseyCherepanov/john-devkit/HEAD/john_gost.c -------------------------------------------------------------------------------- /john_hmac-sha512.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlekseyCherepanov/john-devkit/HEAD/john_hmac-sha512.c -------------------------------------------------------------------------------- /john_my_aes_encrypt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlekseyCherepanov/john-devkit/HEAD/john_my_aes_encrypt.c -------------------------------------------------------------------------------- /john_pbkdf2-hmac-md4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlekseyCherepanov/john-devkit/HEAD/john_pbkdf2-hmac-md4.c -------------------------------------------------------------------------------- /john_pbkdf2-hmac-md5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlekseyCherepanov/john-devkit/HEAD/john_pbkdf2-hmac-md5.c -------------------------------------------------------------------------------- /john_pbkdf2-hmac-sha1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlekseyCherepanov/john-devkit/HEAD/john_pbkdf2-hmac-sha1.c -------------------------------------------------------------------------------- /john_pbkdf2-hmac-sha256.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlekseyCherepanov/john-devkit/HEAD/john_pbkdf2-hmac-sha256.c -------------------------------------------------------------------------------- /john_pbkdf2-hmac-sha512.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlekseyCherepanov/john-devkit/HEAD/john_pbkdf2-hmac-sha512.c -------------------------------------------------------------------------------- /john_raw-md2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlekseyCherepanov/john-devkit/HEAD/john_raw-md2.c -------------------------------------------------------------------------------- /john_raw-md4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlekseyCherepanov/john-devkit/HEAD/john_raw-md4.c -------------------------------------------------------------------------------- /john_raw-md5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlekseyCherepanov/john-devkit/HEAD/john_raw-md5.c -------------------------------------------------------------------------------- /john_raw-sha1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlekseyCherepanov/john-devkit/HEAD/john_raw-sha1.c -------------------------------------------------------------------------------- /john_raw-sha224.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlekseyCherepanov/john-devkit/HEAD/john_raw-sha224.c -------------------------------------------------------------------------------- /john_raw-sha256.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlekseyCherepanov/john-devkit/HEAD/john_raw-sha256.c -------------------------------------------------------------------------------- /john_raw-sha384.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlekseyCherepanov/john-devkit/HEAD/john_raw-sha384.c -------------------------------------------------------------------------------- /john_raw-sha512.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlekseyCherepanov/john-devkit/HEAD/john_raw-sha512.c -------------------------------------------------------------------------------- /john_ripemd-128.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlekseyCherepanov/john-devkit/HEAD/john_ripemd-128.c -------------------------------------------------------------------------------- /john_ripemd-160.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlekseyCherepanov/john-devkit/HEAD/john_ripemd-160.c -------------------------------------------------------------------------------- /john_tiger.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlekseyCherepanov/john-devkit/HEAD/john_tiger.c -------------------------------------------------------------------------------- /john_truecrypt_sha512.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlekseyCherepanov/john-devkit/HEAD/john_truecrypt_sha512.c -------------------------------------------------------------------------------- /john_whirlpool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlekseyCherepanov/john-devkit/HEAD/john_whirlpool.c -------------------------------------------------------------------------------- /lang_main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlekseyCherepanov/john-devkit/HEAD/lang_main.py -------------------------------------------------------------------------------- /lang_spec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlekseyCherepanov/john-devkit/HEAD/lang_spec.py -------------------------------------------------------------------------------- /lang_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlekseyCherepanov/john-devkit/HEAD/lang_tools.py -------------------------------------------------------------------------------- /output_c.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlekseyCherepanov/john-devkit/HEAD/output_c.py -------------------------------------------------------------------------------- /output_c_modules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlekseyCherepanov/john-devkit/HEAD/output_c_modules.py -------------------------------------------------------------------------------- /parsing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlekseyCherepanov/john-devkit/HEAD/parsing.h -------------------------------------------------------------------------------- /parsing_plug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlekseyCherepanov/john-devkit/HEAD/parsing_plug.c -------------------------------------------------------------------------------- /run_format_raw.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlekseyCherepanov/john-devkit/HEAD/run_format_raw.sh -------------------------------------------------------------------------------- /simple_aes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlekseyCherepanov/john-devkit/HEAD/simple_aes.py -------------------------------------------------------------------------------- /simple_asm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlekseyCherepanov/john-devkit/HEAD/simple_asm.c -------------------------------------------------------------------------------- /simple_bit_layout.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlekseyCherepanov/john-devkit/HEAD/simple_bit_layout.c -------------------------------------------------------------------------------- /simple_des_sboxes.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlekseyCherepanov/john-devkit/HEAD/simple_des_sboxes.pl -------------------------------------------------------------------------------- /simple_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlekseyCherepanov/john-devkit/HEAD/simple_example.py -------------------------------------------------------------------------------- /simple_hmac.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlekseyCherepanov/john-devkit/HEAD/simple_hmac.py -------------------------------------------------------------------------------- /simple_lm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlekseyCherepanov/john-devkit/HEAD/simple_lm.c -------------------------------------------------------------------------------- /simple_lm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlekseyCherepanov/john-devkit/HEAD/simple_lm.py -------------------------------------------------------------------------------- /simple_pbkdf2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlekseyCherepanov/john-devkit/HEAD/simple_pbkdf2.py -------------------------------------------------------------------------------- /simple_with_eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlekseyCherepanov/john-devkit/HEAD/simple_with_eval.py -------------------------------------------------------------------------------- /slides_2015-05-26_phdays_v.src.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlekseyCherepanov/john-devkit/HEAD/slides_2015-05-26_phdays_v.src.org -------------------------------------------------------------------------------- /slides_2016-05-17_phdays_vi.src.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlekseyCherepanov/john-devkit/HEAD/slides_2016-05-17_phdays_vi.src.org -------------------------------------------------------------------------------- /t_john_dyna_pw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlekseyCherepanov/john-devkit/HEAD/t_john_dyna_pw.c -------------------------------------------------------------------------------- /t_john_simple.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlekseyCherepanov/john-devkit/HEAD/t_john_simple.c -------------------------------------------------------------------------------- /t_john_truecrypt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlekseyCherepanov/john-devkit/HEAD/t_john_truecrypt.c -------------------------------------------------------------------------------- /t_lm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlekseyCherepanov/john-devkit/HEAD/t_lm.c -------------------------------------------------------------------------------- /t_lm_bs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlekseyCherepanov/john-devkit/HEAD/t_lm_bs.c -------------------------------------------------------------------------------- /t_ocl_test.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlekseyCherepanov/john-devkit/HEAD/t_ocl_test.cl -------------------------------------------------------------------------------- /t_raw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlekseyCherepanov/john-devkit/HEAD/t_raw.c -------------------------------------------------------------------------------- /t_raw2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlekseyCherepanov/john-devkit/HEAD/t_raw2.c -------------------------------------------------------------------------------- /t_tester.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlekseyCherepanov/john-devkit/HEAD/t_tester.c -------------------------------------------------------------------------------- /tool_bs_verify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlekseyCherepanov/john-devkit/HEAD/tool_bs_verify.py -------------------------------------------------------------------------------- /tool_extract_bs_sbox.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlekseyCherepanov/john-devkit/HEAD/tool_extract_bs_sbox.pl -------------------------------------------------------------------------------- /util_build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlekseyCherepanov/john-devkit/HEAD/util_build.py -------------------------------------------------------------------------------- /util_main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlekseyCherepanov/john-devkit/HEAD/util_main.py -------------------------------------------------------------------------------- /util_ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlekseyCherepanov/john-devkit/HEAD/util_ui.py --------------------------------------------------------------------------------