mirror of
https://github.com/php-gnupg/php-gnupg.git
synced 2024-11-22 22:37:10 +00:00
7 lines
157 B
PHP
7 lines
157 B
PHP
<?php
|
|
require_once (dirname(__FILE__)."/main.php");
|
|
|
|
$gnupg -> addSignKey ($fingerprint,$passphrase);
|
|
$text = $gnupg -> sign ($mailtext);
|
|
echo $text;
|
|
?>
|