mirror of
https://github.com/php-gnupg/php-gnupg.git
synced 2024-11-21 14:07:10 +00:00
47 lines
No EOL
907 B
PHP
47 lines
No EOL
907 B
PHP
--TEST--n
|
|
sign a text with mode SIG_MODE_DETACH and without armored output
|
|
--SKIPIF--
|
|
<?php if (!extension_loaded("gnupg")) die("skip"); ?>
|
|
--FILE--
|
|
<?php
|
|
require_once "gnupgt.inc";
|
|
gnupgt::import_key();
|
|
|
|
$gpg = gnupg_init();
|
|
gnupg_seterrormode($gpg, GNUPG_ERROR_WARNING);
|
|
gnupg_setarmor($gpg, 0);
|
|
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) "2DF0DD02DC9B70B7F64F572E669E775E0A6284B3"
|
|
["validity"]=>
|
|
int(0)
|
|
["timestamp"]=>
|
|
int(%d)
|
|
["status"]=>
|
|
int(0)
|
|
["summary"]=>
|
|
int(0)
|
|
}
|
|
}
|
|
string(7) "foo bar"
|
|
--CLEAN--
|
|
<?php
|
|
require_once "gnupgt.inc";
|
|
gnupgt::delete_key();
|
|
?>
|