0.1.7 • Published 8 years ago

node-pgp-search v0.1.7

Weekly downloads
3
License
MIT
Repository
github
Last release
8 years ago

node-pgp-search

Search for a PGP key by email address using SKS Key Servers

Install

npm install node-pgp-search

Usage

var pgpsearch = require('node-pgp-search');

Get the list of keys for a given email address

pgpsearch.index(email, function(err, keys) {
  // keys is an array of object { fingerprint: "", bits: 4096, date: Date }
});

Get the PGP key for a given fingerprint

pgpsearch.get("0x44A7D05FF1F6D0B80F7915A614261B13FD430CDC", function(err, pgp) {
  // PGP is the public key for the given fingerprint
});

Tests

npm run test
0.1.7

8 years ago

0.1.6

8 years ago

0.1.5

8 years ago

0.1.4

9 years ago

0.1.3

9 years ago

0.1.2

9 years ago

0.1.1

9 years ago

0.1.0

9 years ago

0.0.1

9 years ago