Still have Warning: mcrypt_decrypt(): Only keys of sizes 16, 24 or 32 supported
-
Still getting these errors which I had posted about before here:
Warning: mcrypt_encrypt(): Key of size 27 not supported by this algorithm. Only keys of sizes 16, 24 or 32 supported in ..cyan-backup/cyan-backup.php on line 744 Warning: mcrypt_decrypt(): Key of size 27 not supported by this algorithm. Only keys of sizes 16, 24 or 32 supported in ..cyan-backup/cyan-backup.php on line 770
After doing some googling and reading, it seems this is an issue with mcrypt being outdated(??) and no longer playing nice with PHP 5.6+ and to fix this issue cyan-backup.php needs an update to use
pad_key()
or by manually doing it via$key = $key."\0"
which I read about here – https://stackoverflow.com/questions/27254432/mcrypt-decrypt-error-change-key-sizeAny way you could test this out and add it to the next update?? I’d be happy to make a small donation for your time and the cause!!
- The topic ‘Still have Warning: mcrypt_decrypt(): Only keys of sizes 16, 24 or 32 supported’ is closed to new replies.