mirror of
https://github.com/php-gnupg/php-gnupg.git
synced 2024-11-22 06:27:08 +00:00
44 lines
No EOL
855 B
PHP
44 lines
No EOL
855 B
PHP
--TEST--n
|
|
list signatures
|
|
--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);
|
|
$ret = gnupg_listsignatures($gpg, $fingerprint);
|
|
var_dump($ret);
|
|
?>
|
|
--EXPECT--
|
|
array(1) {
|
|
["testkey (testkey) <test@example.net>"]=>
|
|
array(1) {
|
|
["2E96F141B3DD2B2E"]=>
|
|
array(8) {
|
|
["uid"]=>
|
|
string(36) "testkey (testkey) <test@example.net>"
|
|
["name"]=>
|
|
string(7) "testkey"
|
|
["email"]=>
|
|
string(16) "test@example.net"
|
|
["comment"]=>
|
|
string(7) "testkey"
|
|
["expires"]=>
|
|
int(0)
|
|
["revoked"]=>
|
|
bool(false)
|
|
["expired"]=>
|
|
bool(false)
|
|
["invalid"]=>
|
|
bool(false)
|
|
}
|
|
}
|
|
}
|
|
--CLEAN--
|
|
<?php
|
|
require_once "gnupgt.inc";
|
|
gnupgt::delete_key();
|
|
?>
|