選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
Robin Thoni 6486178dfa updated postgres docker; updated rounecube to 1.3.6 6年前
..
Crypt updated postgres docker; updated rounecube to 1.3.6 6年前
data updated postgres docker; updated rounecube to 1.3.6 6年前
scripts updated postgres docker; updated rounecube to 1.3.6 6年前
LICENSE updated postgres docker; updated rounecube to 1.3.6 6年前
README.md updated postgres docker; updated rounecube to 1.3.6 6年前
composer.json updated postgres docker; updated rounecube to 1.3.6 6年前
package.php updated postgres docker; updated rounecube to 1.3.6 6年前
package.xml updated postgres docker; updated rounecube to 1.3.6 6年前

README.md

Crypt_GPG

Crypt_GPG is a PHP package to interact with the GNU Privacy Guard (GnuPG). GnuPG is a free and open-source implementation of the OpenPGP protocol, providing key management, data encryption and data signing. Crypt_GPG provides an object-oriented API for performing OpenPGP actions using GnuPG.

Crypt_GPG has been migrated from PEAR SVN.

Documentation

Quick Example

<?php

require_once 'Crypt/GPG.php';

$gpg = new Crypt_GPG();
$gpg->addEncryptKey('test@example.com');
$data = $gpg->encrypt('my secret data');

?>

Further Documentation

Bugs and Issues

Please report all new issues via the PEAR bug tracker.

Please submit pull requests for your bug reports!

Testing

To test, run either $ phpunit tests/ or $ pear run-tests -r

Building

To build, simply $ pear package

Installing

To install from scratch $ pear install package.xml

To upgrade $ pear upgrade -f package.xml