--TEST-- Test mcrypt_decrypt() function : basic functionality --SKIPIF-- --FILE-- ===DONE=== --EXPECTF-- *** Testing mcrypt_decrypt() : basic functionality *** --- testing different key lengths key length=8 Warning: mcrypt_decrypt(): Key of size 8 not supported by this algorithm. Only keys of size 24 supported in %s on line %d string(0) "" key length=20 Warning: mcrypt_decrypt(): Key of size 20 not supported by this algorithm. Only keys of size 24 supported in %s on line %d string(0) "" key length=24 string(32) "736563726574206d6573736167650000" key length=26 Warning: mcrypt_decrypt(): Key of size 26 not supported by this algorithm. Only keys of size 24 supported in %s on line %d string(0) "" --- testing different iv lengths iv length=4 string(32) "a9298896ed1b7335f8f10f7ff6d7a239" iv length=8 string(32) "a9298896ed1b7335f8f10f7ff6d7a239" iv length=9 string(32) "a9298896ed1b7335f8f10f7ff6d7a239" ===DONE===