1--TEST-- 2Test mcrypt_ecb() function : basic functionality 3--SKIPIF-- 4<?php 5if (!extension_loaded("mcrypt")) { 6 print "skip - mcrypt extension not loaded"; 7} 8?> 9--FILE-- 10<?php 11error_reporting(E_ALL & ~E_DEPRECATED); 12 13/* Prototype : string mcrypt_ecb(int cipher, string key, string data, int mode, string iv) 14 * Description: ECB crypt/decrypt data using key key with cipher cipher starting with iv 15 * Source code: ext/mcrypt/mcrypt.c 16 * Alias to functions: 17 */ 18 19echo "*** Testing mcrypt_ecb() : basic functionality ***\n"; 20 21 22$cipher = MCRYPT_TRIPLEDES; 23$data = b"This is the secret message which must be encrypted"; 24$mode = MCRYPT_ENCRYPT; 25 26// tripledes uses keys up to 192 bits (24 bytes) 27$keys = array( 28 b'12345678', 29 b'12345678901234567890', 30 b'123456789012345678901234', 31 b'12345678901234567890123456' 32); 33// tripledes is a block cipher of 64 bits (8 bytes) 34$ivs = array( 35 b'1234', 36 b'12345678', 37 b'123456789' 38); 39 40$iv = b'12345678'; 41echo "\n--- testing different key lengths\n"; 42foreach ($keys as $key) { 43 echo "\nkey length=".strlen($key)."\n"; 44 var_dump(bin2hex(mcrypt_ecb($cipher, $key, $data, $mode, $iv))); 45} 46 47$key = b"1234567890123456\0\0\0\0\0\0\0\0"; 48echo "\n--- testing different iv lengths\n"; 49foreach ($ivs as $iv) { 50 echo "\niv length=".strlen($iv)."\n"; 51 var_dump(bin2hex(mcrypt_ecb($cipher, $key, $data, $mode, $iv))); 52} 53?> 54===DONE=== 55--EXPECTF-- 56*** Testing mcrypt_ecb() : basic functionality *** 57 58--- testing different key lengths 59 60key length=8 61 62Warning: mcrypt_ecb(): Key of size 8 not supported by this algorithm. Only keys of size 24 supported in %s on line %d 63string(0) "" 64 65key length=20 66 67Warning: mcrypt_ecb(): Key of size 20 not supported by this algorithm. Only keys of size 24 supported in %s on line %d 68string(0) "" 69 70key length=24 71string(112) "923eedcb20e18e3efa466a6ca1b842b34e6ac46aa3690ef739d0d68a26eb64e1a6ad42e7d18312ae8a57ab927e1dc892e5ff56c061864f27" 72 73key length=26 74 75Warning: mcrypt_ecb(): Key of size 26 not supported by this algorithm. Only keys of size 24 supported in %s on line %d 76string(0) "" 77 78--- testing different iv lengths 79 80iv length=4 81string(112) "440a6f54601969b15e81df09cd381ef585fede5f3620587fd1a949c520aed9f6d10ebbabf2cea3e1f04c9251c2878c0ca37d51c80d490165" 82 83iv length=8 84string(112) "440a6f54601969b15e81df09cd381ef585fede5f3620587fd1a949c520aed9f6d10ebbabf2cea3e1f04c9251c2878c0ca37d51c80d490165" 85 86iv length=9 87string(112) "440a6f54601969b15e81df09cd381ef585fede5f3620587fd1a949c520aed9f6d10ebbabf2cea3e1f04c9251c2878c0ca37d51c80d490165" 88===DONE=== 89