phpcompat icon indicating copy to clipboard operation
phpcompat copied to clipboard

False Positive: WP Mail SMTP

Open jaredatch opened this issue 6 years ago • 0 comments

 69 | ERROR | Extension 'mcrypt' is deprecated since PHP 7.1 and removed since PHP 7.2; Use openssl (preferred) or pecl/mcrypt once available instead
  69 | ERROR | Function mcrypt_create_iv() is deprecated since PHP 7.1 and removed since PHP 7.2; Use random_bytes() or OpenSSL instead
 108 | ERROR | Extension 'mcrypt' is deprecated since PHP 7.1 and removed since PHP 7.2; Use openssl (preferred) or pecl/mcrypt once available instead
 108 | ERROR | Function mcrypt_create_iv() is deprecated since PHP 7.1 and removed since PHP 7.2; Use random_bytes() or OpenSSL instead
 108 | ERROR | The constant "MCRYPT_DEV_URANDOM" is deprecated since PHP 7.1 and removed since PHP 7.2

One of the packages we include has phpseclib as a dependancy. In it mcrypt is conditionally loaded depending on the version of PHP detected. It does not get used or affect users running PHP 7.2/3 where mcrypt support has been removed.

jaredatch avatar Jan 22 '19 02:01 jaredatch