initial release

This commit is contained in:
Thilo Raufeisen 2005-10-07 18:59:50 +00:00
parent 43e0364a82
commit 04b0e31929
14 changed files with 1381 additions and 0 deletions

7
examples/encrypt.php Normal file
View file

@ -0,0 +1,7 @@
<?php
require_once (dirname(__FILE__)."/main.php");
$gnupg -> setEncryptKey ($fingerprint);
$text = $gnupg -> encrypt ($mailtext);
echo $text;
?>