mirror of
https://github.com/php-gnupg/php-gnupg.git
synced 2024-11-22 22:37:10 +00:00
6bacc28bb6
added encryptsign and decryptverify moved gpgme-init into objects_new
14 lines
390 B
PHP
14 lines
390 B
PHP
<?php
|
|
require_once (dirname(__FILE__)."/main.php");
|
|
|
|
$gnupg -> setSignerKey ($fingerprint);
|
|
$gnupg -> setEncryptKey ($fingerprint);
|
|
$gnupg -> setPassPhrase ($passphrase);
|
|
$text = $gnupg -> encryptsign ($mailtext);
|
|
echo $text;
|
|
echo "\n-------------------------\n";
|
|
$plaintext = false;
|
|
$retval = $gnupg -> decryptverify ($text,$plaintext);
|
|
print_r($retval);
|
|
print_r($plaintext);
|
|
?>
|