xqus / pgp-tools
Lookup and manage PGP keys from keyservers
0.1.0
2017-01-15 09:30 UTC
Requires
- guzzlehttp/guzzle: 6.2.*
Requires (Dev)
- phpunit/phpunit: 5.5.*
This package is auto-updated.
Last update: 2024-11-29 04:57:57 UTC
README
Lookup and manage PGP keys from keyservers.
Installing
composer require xqus/pgp-tools
Finding a key
<?php use xqus\pgpTools\Lookup; $keys = $lookup->find('email@example.org'); foreach($keys as $key) { echo $key->fingerprint; echo $key->keylen; echo $key->created; echo $key->expires; /* Get UIDs */ foreach($key->uids as $uid) { echo $uid->name(); echo $uid->comment(); echo $uid->email(); } }