mirror of
https://github.com/php-gnupg/php-gnupg.git
synced 2024-11-22 14:27:09 +00:00
20 lines
401 B
PHP
20 lines
401 B
PHP
--TEST--
|
|
encrypt and decrypt a text
|
|
--FILE--
|
|
<?php
|
|
require_once(dirname(__FILE__)."/vars.inc");
|
|
$gpg = new gnupg();
|
|
$gpg -> seterrormode(gnupg::ERROR_WARNING);
|
|
$gpg -> addencryptkey($fingerprint);
|
|
$enc = $gpg -> encrypt($plaintext);
|
|
|
|
$gpg = NULL;
|
|
|
|
$gpg = new gnupg();
|
|
$gpg -> adddecryptkey($fingerprint, $passphrase);
|
|
$ret = $gpg -> decrypt ($enc);
|
|
|
|
var_dump($ret);
|
|
?>
|
|
--EXPECTF--
|
|
string(7) "foo bar"
|