2017 © Pedro Peláez
 

library pgp-tools

Lookup and manage PGP keys from keyservers

image

xqus/pgp-tools

Lookup and manage PGP keys from keyservers

  • Sunday, January 15, 2017
  • by xqus
  • Repository
  • 1 Watchers
  • 1 Stars
  • 3 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 2 Versions
  • 0 % Grown

The README.md

pgpTools

Lookup and manage PGP keys from keyservers., (*1)

Build Status, (*2)

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();
  }
}

The Versions

15/01 2017

dev-master

9999999-dev

Lookup and manage PGP keys from keyservers

  Sources   Download

MIT

The Requires

 

The Development Requires

keyserver pgp

15/01 2017

0.1.0

0.1.0.0

Lookup and manage PGP keys from keyservers

  Sources   Download

MIT

The Requires

 

The Development Requires

keyserver pgp