I've been testing my projects with PHP 7.1 and came across this.
Deprecated: Function mcrypt_get_block_size() is deprecated in Security.php on line 4
Deprecated: Function mcrypt_module_open() is deprecated in Security.php on line 6
Deprecated: Function mcrypt_enc_get_iv_size() is deprecated in Security.php on line 7
Deprecated: Function mcrypt_create_iv() is deprecated in Security.php on line 7
Deprecated: Function mcrypt_generic_init() is deprecated in Security.php on line 8
Deprecated: Function mcrypt_generic() is deprecated in Security.php on line 9
Deprecated: Function mcrypt_generic_deinit() is deprecated in Security.php on line 10
Deprecated: Function mcrypt_module_close() is deprecated in Security.php on line 11
It's just a deprecation notice, so easily silenced, but probably worth looking at sooner rather than later, as mcrypt will likely be removed from PHP in 7.2 at the earliest.
I've been testing my projects with PHP 7.1 and came across this.
It's just a deprecation notice, so easily silenced, but probably worth looking at sooner rather than later, as mcrypt will likely be removed from PHP in 7.2 at the earliest.