php-gnupg/tests/gnupg_oo_encrypt.phpt

23 lines
461 B
Text
Raw Normal View History

2006-05-18 19:32:32 +00:00
--TEST--
encrypt and decrypt a text
2006-11-03 12:39:53 +00:00
--SKIPIF--
<?php if(!class_exists("gnupg")) die("skip"); ?>
2006-05-18 19:32:32 +00:00
--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"