1--TEST--
2Test mcrypt_encrypt() function : error conditions
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_encrypt(string cipher, string key, string data, string mode, string iv)
12 * Description: OFB 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_encrypt() : error conditions ***\n";
18
19
20//Test mcrypt_encrypt with one more than the expected number of arguments
21echo "\n-- Testing mcrypt_encrypt() function with more than expected no. of arguments --\n";
22$cipher = 'string_val';
23$key = 'string_val';
24$data = 'string_val';
25$mode = 'string_val';
26$iv = 'string_val';
27$extra_arg = 10;
28var_dump( mcrypt_encrypt($cipher, $key, $data, $mode, $iv, $extra_arg) );
29
30// Testing mcrypt_encrypt with one less than the expected number of arguments
31echo "\n-- Testing mcrypt_encrypt() function with less than expected no. of arguments --\n";
32$cipher = 'string_val';
33$key = 'string_val';
34$data = 'string_val';
35var_dump( mcrypt_encrypt($cipher, $key, $data) );
36
37?>
38===DONE===
39--EXPECTF--
40*** Testing mcrypt_encrypt() : error conditions ***
41
42-- Testing mcrypt_encrypt() function with more than expected no. of arguments --
43
44Warning: mcrypt_encrypt() expects at most 5 parameters, 6 given in %s on line %d
45NULL
46
47-- Testing mcrypt_encrypt() function with less than expected no. of arguments --
48
49Warning: mcrypt_encrypt() expects at least 4 parameters, 3 given in %s on line %d
50NULL
51===DONE===
52
53