mirror of
https://github.com/php-gnupg/php-gnupg.git
synced 2024-11-22 22:37:10 +00:00
34 lines
637 B
PHP
34 lines
637 B
PHP
--TEST--n
|
|
import a new key into the keyring
|
|
--SKIPIF--
|
|
<?php if(!class_exists("gnupg")) die("skip"); ?>
|
|
--FILE--
|
|
<?php
|
|
require_once dirname(__FILE__) . "/vars.inc";
|
|
gnupg_test_clear_files();
|
|
$gpg = new gnupg();
|
|
$gpg->seterrormode(gnupg::ERROR_WARNING);
|
|
$ret = $gpg->import($testkey);
|
|
var_dump($ret);
|
|
?>
|
|
--EXPECT--
|
|
array(9) {
|
|
["imported"]=>
|
|
int(1)
|
|
["unchanged"]=>
|
|
int(0)
|
|
["newuserids"]=>
|
|
int(0)
|
|
["newsubkeys"]=>
|
|
int(0)
|
|
["secretimported"]=>
|
|
int(1)
|
|
["secretunchanged"]=>
|
|
int(0)
|
|
["newsignatures"]=>
|
|
int(0)
|
|
["skippedkeys"]=>
|
|
int(0)
|
|
["fingerprint"]=>
|
|
string(40) "64DF06E42FCF2094590CDEEE2E96F141B3DD2B2E"
|
|
}
|