mirror of
https://github.com/php-gnupg/php-gnupg.git
synced 2026-07-27 16:12:40 +00:00
tests
This commit is contained in:
parent
abaa52b97a
commit
dc666cc840
12 changed files with 487 additions and 0 deletions
20
tests/gnupg_encrypt_oo.phpt
Normal file
20
tests/gnupg_encrypt_oo.phpt
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
--TEST--
|
||||
encrypt and decrypt a text
|
||||
--FILE--
|
||||
<?php
|
||||
require_once(dirname(__FILE__)."/vars.inc");
|
||||
$gpg = new gnupg();
|
||||
$gpg -> seterrormode(gnupg::ERROR_WARNING);
|
||||
$gpg -> addencryptkey($fingerprint);
|
||||
$enc = $gpg -> encrypt($plaintext);
|
||||
|
||||
$gpg = NULL;
|
||||
|
||||
$gpg = new gnupg();
|
||||
$gpg -> adddecryptkey($fingerprint, $passphrase);
|
||||
$ret = $gpg -> decrypt ($enc);
|
||||
|
||||
var_dump($ret);
|
||||
?>
|
||||
--EXPECTF--
|
||||
string(7) "foo bar"
|
||||
Loading…
Add table
Add a link
Reference in a new issue