apex / armor-pgp
PGP extension for Armor
Installs: 35
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 2
Forks: 0
Open Issues: 0
Type:package
Requires
- php: >=8.0
- ext-gnupg: *
- apex/armor: ^2.0
Requires (Dev)
- apex/signer: ^2.0
- phpunit/phpunit: ^9.5
This package is auto-updated.
Last update: 2024-11-08 00:54:35 UTC
README
An extension for the Armor package that provides PGP functionality including key management, encrypt / decrypt data, and two factor authentication.
Installation
Install via Composer with:
composer require apex/armor-pgp
Table of Contents
Basic Usage
use Apex\Armor\Armor; use Apex\Armor\PGP\{KeyManager, EncryptPGP}; // Init Armor $armor = new Armor(); // Import PGP key $pgpkey = file_get_contents('mykey.asc'); $manager = new KeyManager($armor); $manager->import('u:321', $pgpkey); // Encrypt PGP message $enc = new EncryptPGP($armor); $pgp_message = $enc->toUuids('some secret message', ['u:321']); echo "Encrypted Message:\n\n$pgp_message\n";
Support
If you have any questions, issues or feedback, please feel free to drop a note on the ApexPl Reddit sub for a prompt and helpful response.
Follow Apex
Loads of good things coming in the near future including new quality open source packages, more advanced articles / tutorials that go over down to earth useful topics, et al. Stay informed by joining the mailing list on our web site, or follow along on Twitter at @mdizak1.