mirror of
https://github.com/php-gnupg/php-gnupg.git
synced 2026-02-05 13:51:34 +00:00
more tests
removed examples
This commit is contained in:
parent
f98e3c57e4
commit
ba4ad8960b
33 changed files with 478 additions and 121 deletions
37
tests/gnupg_res_sign_detach.phpt
Normal file
37
tests/gnupg_res_sign_detach.phpt
Normal file
|
|
@ -0,0 +1,37 @@
|
|||
--TEST--n
|
||||
sign a text with mode SIG_MODE_DETACH
|
||||
--FILE--
|
||||
<?php
|
||||
require_once(dirname(__FILE__)."/vars.inc");
|
||||
$gpg = gnupg_init();
|
||||
gnupg_seterrormode($gpg, GNUPG_ERROR_WARNING);
|
||||
gnupg_setsignmode($gpg, GNUPG_SIG_MODE_DETACH);
|
||||
gnupg_addsignkey($gpg, $fingerprint, $passphrase);
|
||||
$ret = gnupg_sign($gpg, $plaintext);
|
||||
|
||||
$gpg = NULL;
|
||||
|
||||
$gpg = gnupg_init();
|
||||
$tmp = false;
|
||||
$ret = gnupg_verify($gpg,$plaintext, $ret);
|
||||
|
||||
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