diff options
Diffstat (limited to 'ext/openssl/tests/014.phpt')
-rw-r--r-- | ext/openssl/tests/014.phpt | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/ext/openssl/tests/014.phpt b/ext/openssl/tests/014.phpt new file mode 100644 index 0000000..6123964 --- /dev/null +++ b/ext/openssl/tests/014.phpt @@ -0,0 +1,38 @@ +--TEST-- +openssl_private_encrypt() tests +--SKIPIF-- +<?php if (!extension_loaded("openssl")) print "skip"; ?> +--FILE-- +<?php +$data = "Testing openssl_private_encrypt()"; +$privkey = "file://" . dirname(__FILE__) . "/private.key"; +$pubkey = "file://" . dirname(__FILE__) . "/public.key"; +$wrong = "wrong"; +class test { + function __toString() { + return "test"; + } +} +$obj = new test; + +var_dump(openssl_private_encrypt($data, $encrypted, $privkey)); +var_dump(openssl_private_encrypt($data, $encrypted, $pubkey)); +var_dump(openssl_private_encrypt($data, $encrypted, $wrong)); +var_dump(openssl_private_encrypt($data, $encrypted, $obj)); +var_dump(openssl_private_encrypt($obj, $encrypted, $privkey)); +openssl_public_decrypt($encrypted, $output, $pubkey); +var_dump($output); +?> +--EXPECTF-- +bool(true) + +Warning: openssl_private_encrypt(): key param is not a valid private key in %s on line %d +bool(false) + +Warning: openssl_private_encrypt(): key param is not a valid private key in %s on line %d +bool(false) + +Warning: openssl_private_encrypt(): key param is not a valid private key in %s on line %d +bool(false) +bool(true) +string(4) "test" |