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
38
tests/gnupg_encryptsign_oo.phpt
Normal file
38
tests/gnupg_encryptsign_oo.phpt
Normal file
|
|
@ -0,0 +1,38 @@
|
|||
--TEST--
|
||||
encryptsign and decryptverify a text
|
||||
--FILE--
|
||||
<?php
|
||||
require_once(dirname(__FILE__)."/vars.inc");
|
||||
$gpg = new gnupg();
|
||||
$gpg -> seterrormode(gnupg::ERROR_WARNING);
|
||||
$gpg -> addencryptkey($fingerprint);
|
||||
$gpg -> addsignkey($fingerprint, $passphrase);
|
||||
$enc = $gpg -> encryptsign($plaintext);
|
||||
|
||||
$gpg = NULL;
|
||||
$plaintext = false;
|
||||
|
||||
$gpg = new gnupg();
|
||||
$gpg -> adddecryptkey($fingerprint, $passphrase);
|
||||
$ret = $gpg -> decryptverify ($enc, $plaintext);
|
||||
|
||||
var_dump($ret);
|
||||
var_dump($plaintext);
|
||||
?>
|
||||
--EXPECTF--
|
||||
array(1) {
|
||||
[0]=>
|
||||
array(5) {
|
||||
["fingerprint"]=>
|
||||
string(40) "64DF06E42FCF2094590CDEEE2E96F141B3DD2B2E"
|
||||
["validity"]=>
|
||||
int(0)
|
||||
["timestamp"]=>
|
||||
int(%d)
|
||||
["status"]=>
|
||||
int(0)
|
||||
["summary"]=>
|
||||
int(0)
|
||||
}
|
||||
}
|
||||
string(7) "foo bar"
|
||||
Loading…
Add table
Add a link
Reference in a new issue