mirror of
https://github.com/php-gnupg/php-gnupg.git
synced 2024-11-22 22:37:10 +00:00
22 lines
445 B
PHP
22 lines
445 B
PHP
--TEST--
|
|
encrypt and decrypt a text
|
|
--FILE--
|
|
<?php
|
|
require_once dirname(__FILE__) . "/vars.inc";
|
|
gnupg_test_import();
|
|
|
|
$gpg = gnupg_init();
|
|
gnupg_seterrormode($gpg, GNUPG_ERROR_WARNING);
|
|
gnupg_addencryptkey($gpg, $fingerprint);
|
|
$enc = gnupg_encrypt($gpg, $plaintext);
|
|
|
|
$gpg = NULL;
|
|
|
|
$gpg = gnupg_init();
|
|
gnupg_adddecryptkey($gpg, $fingerprint, $passphrase);
|
|
$ret = gnupg_decrypt ($gpg, $enc);
|
|
|
|
var_dump($ret);
|
|
?>
|
|
--EXPECTF--
|
|
string(7) "foo bar"
|