mirror of
https://github.com/php-gnupg/php-gnupg.git
synced 2024-11-21 14:07:10 +00:00
45 lines
No EOL
865 B
PHP
45 lines
No EOL
865 B
PHP
--TEST--
|
|
encryptsign and decryptverify a text
|
|
--SKIPIF--
|
|
<?php if(!class_exists("gnupg")) die("skip"); ?>
|
|
--FILE--
|
|
<?php
|
|
require_once "gnupgt.inc";
|
|
gnupgt::import_key();
|
|
|
|
$gpg = new gnupg();
|
|
$gpg->seterrormode(gnupg::ERROR_WARNING);
|
|
$gpg->addencryptkey($fingerprint);
|
|
$gpg->addsignkey($fingerprint, $passphrase);
|
|
$enc = $gpg->encryptsign($plaintext);
|
|
|
|
$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) "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();
|
|
?>
|