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