Home
last modified time | relevance | path

Searched refs:openssl_seal (Results 1 – 11 of 11) sorted by relevance

/PHP-7.3/ext/openssl/tests/
H A Dopenssl_seal_basic.phpt2 openssl_seal() tests
13 var_dump(openssl_seal($a, $b, $c, $d));
14 var_dump(openssl_seal($a, $a, $a, array()));
15 var_dump(openssl_seal($c, $c, $c, 1));
16 var_dump(openssl_seal($b, $b, $b, ""));
25 var_dump(openssl_seal($data, $sealed, $ekeys, array($pub_key, $wrong)));
26 var_dump(openssl_seal($data, $sealed, $ekeys, $pub_key));
27 var_dump(openssl_seal($data, $sealed, $ekeys, array()));
28 var_dump(openssl_seal($data, $sealed, $ekeys, array($wrong)));
36 Warning: openssl_seal(): Fourth argument to openssl_seal() must be a non-empty array in %s on line …
[all …]
H A Dbug70438.phpt2 Request #70438: Add IV parameter for openssl_seal and openssl_open
12 $data = "openssl_seal() test";
17 openssl_seal($data, $sealed, $ekeys, array($pub_key, $pub_key), $cipher);
18 openssl_seal($data, $sealed, $ekeys, array($pub_key, $pub_key), 'sparkles', $iv);
19 openssl_seal($data, $sealed, $ekeys, array($pub_key, $pub_key), $cipher, $iv);
24 Warning: openssl_seal(): Cipher algorithm requires an IV to be supplied as a sixth parameter in %s …
26 Warning: openssl_seal(): Unknown signature algorithm. in %s on line %d
27 openssl_seal() test
H A Dbug71475.phpt2 Bug #71475: openssl_seal() uninitialized memory usage
10 openssl_seal($_, $_, $_, array_fill(0,64,0));
14 Warning: openssl_seal(): not a public key (1th member of pubkeys) in %s%ebug71475.php on line %d
H A Dbug60632.phpt2 Bug #60632: openssl_seal fails with AES
22 $result = openssl_seal('test phrase', $encrypted, $ekeys, array($pubkey), 'AES-256-CBC');
26 Warning: openssl_seal(): Cipher algorithm requires an IV to be supplied as a sixth parameter in %s …
H A Dbug70395.phpt2 Bug #70395 (Missing ARG_INFO for openssl_seal())
9 $func = new ReflectionFunction('openssl_seal');
H A Dbug74402.phpt2 Bug #74402 (segfault on random_bytes, bin3hex, openssl_seal)
22 var_dump(openssl_seal($data, $sealed_data, $env_keys, $key, 'AES256', $iv));
H A Dbug74651.phpt13 var_dump(openssl_seal($inputstr, $sealed, $ekeys, array($pub_key_id, $pub_key_id), 'AES-128-ECB'));
H A Dopenssl_open_basic.phpt12 openssl_seal($data, $sealed, $ekeys, array($pub_key, $pub_key, $pub_key));
/PHP-7.3/ext/openssl/
H A Dphp_openssl.h105 PHP_FUNCTION(openssl_seal);
H A DREADME194 int openssl_seal(string data, &string sealdata, &array ekeys, array pubkeys)
269 openssl_seal($data, $sealed, $ekeys, array($pk1,$pk2));
H A Dopenssl.c518 PHP_FE(openssl_seal, arginfo_openssl_seal)
6069 PHP_FUNCTION(openssl_seal) in PHP_FUNCTION() argument

Completed in 25 milliseconds