pear / crypt_gpg
Provides an object oriented interface to the GNU Privacy Guard (GnuPG). It requires the GnuPG executable to be on the system.
v1.6.9
2024-03-23 10:43 UTC
Requires
- php: >=5.4.8
- ext-mbstring: *
- pear/console_commandline: *
- pear/pear_exception: *
Requires (Dev)
- phpstan/phpstan: ^1.2
- phpunit/phpunit: ^9
Suggests
- ext-posix: May require the posix PHP extension
README
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.
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