├── .gitattributes ├── .github └── workflows │ └── build.yml ├── .gitignore ├── .travis.yml ├── CREDITS ├── LICENSE ├── TODO ├── composer.json ├── config.m4 ├── config.w32 ├── mcrypt.c ├── mcrypt_filter.c ├── package.xml ├── php_mcrypt.h ├── php_mcrypt_filter.h └── tests ├── blowfish.phpt ├── bug35496.phpt ├── bug37595.phpt ├── bug41252.phpt ├── bug43143.phpt ├── bug46010.phpt ├── bug49738.phpt ├── bug55169.phpt ├── bug70625.phpt ├── bug8040.phpt ├── mcrypt_cbc.phpt ├── mcrypt_cbc_3des_decrypt.phpt ├── mcrypt_cbc_3des_encrypt.phpt ├── mcrypt_cfb.phpt ├── mcrypt_create_iv.phpt ├── mcrypt_decrypt.phpt ├── mcrypt_decrypt_3des_cbc.phpt ├── mcrypt_decrypt_3des_ecb.phpt ├── mcrypt_ecb.phpt ├── mcrypt_ecb_3des_decrypt.phpt ├── mcrypt_ecb_3des_encrypt.phpt ├── mcrypt_enc_get_algorithms_name.phpt ├── mcrypt_enc_get_block_size.phpt ├── mcrypt_enc_get_iv_size.phpt ├── mcrypt_enc_get_key_size.phpt ├── mcrypt_enc_get_mode_name.phpt ├── mcrypt_enc_get_supported_key_sizes.phpt ├── mcrypt_enc_is_block_algorithm.phpt ├── mcrypt_enc_is_block_algorithm_mode.phpt ├── mcrypt_enc_is_block_mode.phpt ├── mcrypt_enc_self_test.phpt ├── mcrypt_encrypt_3des_cbc.phpt ├── mcrypt_encrypt_3des_ecb.phpt ├── mcrypt_filters.phpt ├── mcrypt_get_block_size.phpt ├── mcrypt_get_cipher_name.phpt ├── mcrypt_get_iv_size.phpt ├── mcrypt_get_key_size.phpt ├── mcrypt_list_algorithms.phpt ├── mcrypt_list_modes.phpt ├── mcrypt_module_get_algo_block_size.phpt ├── mcrypt_module_get_algo_key_size.phpt ├── mcrypt_module_get_supported_key_sizes.phpt ├── mcrypt_module_is_block_algorithm.phpt ├── mcrypt_module_is_block_algorithm_mode.phpt ├── mcrypt_module_is_block_mode.phpt ├── mcrypt_module_open.phpt ├── mcrypt_module_self_test.phpt ├── mcrypt_ofb.phpt ├── mcrypt_rijndael128_128BitKey.phpt ├── mcrypt_rijndael128_256BitKey.phpt └── vectors.txt /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/pecl-encryption-mcrypt/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/pecl-encryption-mcrypt/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/pecl-encryption-mcrypt/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/pecl-encryption-mcrypt/HEAD/.travis.yml -------------------------------------------------------------------------------- /CREDITS: -------------------------------------------------------------------------------- 1 | mcrypt 2 | Sascha Schumann, Derick Rethans 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/pecl-encryption-mcrypt/HEAD/LICENSE -------------------------------------------------------------------------------- /TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/pecl-encryption-mcrypt/HEAD/TODO -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/pecl-encryption-mcrypt/HEAD/composer.json -------------------------------------------------------------------------------- /config.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/pecl-encryption-mcrypt/HEAD/config.m4 -------------------------------------------------------------------------------- /config.w32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/pecl-encryption-mcrypt/HEAD/config.w32 -------------------------------------------------------------------------------- /mcrypt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/pecl-encryption-mcrypt/HEAD/mcrypt.c -------------------------------------------------------------------------------- /mcrypt_filter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/pecl-encryption-mcrypt/HEAD/mcrypt_filter.c -------------------------------------------------------------------------------- /package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/pecl-encryption-mcrypt/HEAD/package.xml -------------------------------------------------------------------------------- /php_mcrypt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/pecl-encryption-mcrypt/HEAD/php_mcrypt.h -------------------------------------------------------------------------------- /php_mcrypt_filter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/pecl-encryption-mcrypt/HEAD/php_mcrypt_filter.h -------------------------------------------------------------------------------- /tests/blowfish.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/pecl-encryption-mcrypt/HEAD/tests/blowfish.phpt -------------------------------------------------------------------------------- /tests/bug35496.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/pecl-encryption-mcrypt/HEAD/tests/bug35496.phpt -------------------------------------------------------------------------------- /tests/bug37595.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/pecl-encryption-mcrypt/HEAD/tests/bug37595.phpt -------------------------------------------------------------------------------- /tests/bug41252.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/pecl-encryption-mcrypt/HEAD/tests/bug41252.phpt -------------------------------------------------------------------------------- /tests/bug43143.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/pecl-encryption-mcrypt/HEAD/tests/bug43143.phpt -------------------------------------------------------------------------------- /tests/bug46010.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/pecl-encryption-mcrypt/HEAD/tests/bug46010.phpt -------------------------------------------------------------------------------- /tests/bug49738.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/pecl-encryption-mcrypt/HEAD/tests/bug49738.phpt -------------------------------------------------------------------------------- /tests/bug55169.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/pecl-encryption-mcrypt/HEAD/tests/bug55169.phpt -------------------------------------------------------------------------------- /tests/bug70625.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/pecl-encryption-mcrypt/HEAD/tests/bug70625.phpt -------------------------------------------------------------------------------- /tests/bug8040.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/pecl-encryption-mcrypt/HEAD/tests/bug8040.phpt -------------------------------------------------------------------------------- /tests/mcrypt_cbc.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/pecl-encryption-mcrypt/HEAD/tests/mcrypt_cbc.phpt -------------------------------------------------------------------------------- /tests/mcrypt_cbc_3des_decrypt.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/pecl-encryption-mcrypt/HEAD/tests/mcrypt_cbc_3des_decrypt.phpt -------------------------------------------------------------------------------- /tests/mcrypt_cbc_3des_encrypt.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/pecl-encryption-mcrypt/HEAD/tests/mcrypt_cbc_3des_encrypt.phpt -------------------------------------------------------------------------------- /tests/mcrypt_cfb.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/pecl-encryption-mcrypt/HEAD/tests/mcrypt_cfb.phpt -------------------------------------------------------------------------------- /tests/mcrypt_create_iv.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/pecl-encryption-mcrypt/HEAD/tests/mcrypt_create_iv.phpt -------------------------------------------------------------------------------- /tests/mcrypt_decrypt.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/pecl-encryption-mcrypt/HEAD/tests/mcrypt_decrypt.phpt -------------------------------------------------------------------------------- /tests/mcrypt_decrypt_3des_cbc.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/pecl-encryption-mcrypt/HEAD/tests/mcrypt_decrypt_3des_cbc.phpt -------------------------------------------------------------------------------- /tests/mcrypt_decrypt_3des_ecb.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/pecl-encryption-mcrypt/HEAD/tests/mcrypt_decrypt_3des_ecb.phpt -------------------------------------------------------------------------------- /tests/mcrypt_ecb.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/pecl-encryption-mcrypt/HEAD/tests/mcrypt_ecb.phpt -------------------------------------------------------------------------------- /tests/mcrypt_ecb_3des_decrypt.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/pecl-encryption-mcrypt/HEAD/tests/mcrypt_ecb_3des_decrypt.phpt -------------------------------------------------------------------------------- /tests/mcrypt_ecb_3des_encrypt.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/pecl-encryption-mcrypt/HEAD/tests/mcrypt_ecb_3des_encrypt.phpt -------------------------------------------------------------------------------- /tests/mcrypt_enc_get_algorithms_name.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/pecl-encryption-mcrypt/HEAD/tests/mcrypt_enc_get_algorithms_name.phpt -------------------------------------------------------------------------------- /tests/mcrypt_enc_get_block_size.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/pecl-encryption-mcrypt/HEAD/tests/mcrypt_enc_get_block_size.phpt -------------------------------------------------------------------------------- /tests/mcrypt_enc_get_iv_size.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/pecl-encryption-mcrypt/HEAD/tests/mcrypt_enc_get_iv_size.phpt -------------------------------------------------------------------------------- /tests/mcrypt_enc_get_key_size.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/pecl-encryption-mcrypt/HEAD/tests/mcrypt_enc_get_key_size.phpt -------------------------------------------------------------------------------- /tests/mcrypt_enc_get_mode_name.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/pecl-encryption-mcrypt/HEAD/tests/mcrypt_enc_get_mode_name.phpt -------------------------------------------------------------------------------- /tests/mcrypt_enc_get_supported_key_sizes.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/pecl-encryption-mcrypt/HEAD/tests/mcrypt_enc_get_supported_key_sizes.phpt -------------------------------------------------------------------------------- /tests/mcrypt_enc_is_block_algorithm.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/pecl-encryption-mcrypt/HEAD/tests/mcrypt_enc_is_block_algorithm.phpt -------------------------------------------------------------------------------- /tests/mcrypt_enc_is_block_algorithm_mode.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/pecl-encryption-mcrypt/HEAD/tests/mcrypt_enc_is_block_algorithm_mode.phpt -------------------------------------------------------------------------------- /tests/mcrypt_enc_is_block_mode.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/pecl-encryption-mcrypt/HEAD/tests/mcrypt_enc_is_block_mode.phpt -------------------------------------------------------------------------------- /tests/mcrypt_enc_self_test.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/pecl-encryption-mcrypt/HEAD/tests/mcrypt_enc_self_test.phpt -------------------------------------------------------------------------------- /tests/mcrypt_encrypt_3des_cbc.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/pecl-encryption-mcrypt/HEAD/tests/mcrypt_encrypt_3des_cbc.phpt -------------------------------------------------------------------------------- /tests/mcrypt_encrypt_3des_ecb.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/pecl-encryption-mcrypt/HEAD/tests/mcrypt_encrypt_3des_ecb.phpt -------------------------------------------------------------------------------- /tests/mcrypt_filters.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/pecl-encryption-mcrypt/HEAD/tests/mcrypt_filters.phpt -------------------------------------------------------------------------------- /tests/mcrypt_get_block_size.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/pecl-encryption-mcrypt/HEAD/tests/mcrypt_get_block_size.phpt -------------------------------------------------------------------------------- /tests/mcrypt_get_cipher_name.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/pecl-encryption-mcrypt/HEAD/tests/mcrypt_get_cipher_name.phpt -------------------------------------------------------------------------------- /tests/mcrypt_get_iv_size.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/pecl-encryption-mcrypt/HEAD/tests/mcrypt_get_iv_size.phpt -------------------------------------------------------------------------------- /tests/mcrypt_get_key_size.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/pecl-encryption-mcrypt/HEAD/tests/mcrypt_get_key_size.phpt -------------------------------------------------------------------------------- /tests/mcrypt_list_algorithms.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/pecl-encryption-mcrypt/HEAD/tests/mcrypt_list_algorithms.phpt -------------------------------------------------------------------------------- /tests/mcrypt_list_modes.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/pecl-encryption-mcrypt/HEAD/tests/mcrypt_list_modes.phpt -------------------------------------------------------------------------------- /tests/mcrypt_module_get_algo_block_size.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/pecl-encryption-mcrypt/HEAD/tests/mcrypt_module_get_algo_block_size.phpt -------------------------------------------------------------------------------- /tests/mcrypt_module_get_algo_key_size.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/pecl-encryption-mcrypt/HEAD/tests/mcrypt_module_get_algo_key_size.phpt -------------------------------------------------------------------------------- /tests/mcrypt_module_get_supported_key_sizes.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/pecl-encryption-mcrypt/HEAD/tests/mcrypt_module_get_supported_key_sizes.phpt -------------------------------------------------------------------------------- /tests/mcrypt_module_is_block_algorithm.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/pecl-encryption-mcrypt/HEAD/tests/mcrypt_module_is_block_algorithm.phpt -------------------------------------------------------------------------------- /tests/mcrypt_module_is_block_algorithm_mode.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/pecl-encryption-mcrypt/HEAD/tests/mcrypt_module_is_block_algorithm_mode.phpt -------------------------------------------------------------------------------- /tests/mcrypt_module_is_block_mode.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/pecl-encryption-mcrypt/HEAD/tests/mcrypt_module_is_block_mode.phpt -------------------------------------------------------------------------------- /tests/mcrypt_module_open.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/pecl-encryption-mcrypt/HEAD/tests/mcrypt_module_open.phpt -------------------------------------------------------------------------------- /tests/mcrypt_module_self_test.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/pecl-encryption-mcrypt/HEAD/tests/mcrypt_module_self_test.phpt -------------------------------------------------------------------------------- /tests/mcrypt_ofb.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/pecl-encryption-mcrypt/HEAD/tests/mcrypt_ofb.phpt -------------------------------------------------------------------------------- /tests/mcrypt_rijndael128_128BitKey.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/pecl-encryption-mcrypt/HEAD/tests/mcrypt_rijndael128_128BitKey.phpt -------------------------------------------------------------------------------- /tests/mcrypt_rijndael128_256BitKey.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/pecl-encryption-mcrypt/HEAD/tests/mcrypt_rijndael128_256BitKey.phpt -------------------------------------------------------------------------------- /tests/vectors.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/php/pecl-encryption-mcrypt/HEAD/tests/vectors.txt --------------------------------------------------------------------------------