pgpkeydump

Crates.iopgpkeydump
lib.rspgpkeydump
version0.2.3
sourcesrc
created_at2023-04-11 11:15:34.922472
updated_at2023-05-19 01:35:49.735988
descriptionA tool for dumping PGP keys as JSON
homepage
repository
max_upload_size
id835946
size66,851
William Woodruff (woodruffw)

documentation

README

pgpkeydump

CI Crates.io

A tool for dumping PGP keys as JSON.

Installation

From crates:

cargo install pgpkeydump

If the build fails, then you might need nettle. For macOS:

brew install nettle

Usage

pgpkeydump somekey.asc

Both ASCII-armored and binary inputs should work. If the filename argument is omitted, standard input is read instead. Output always goes to standard output.

Example

pgpkeydump \
  <(curl https://keys.openpgp.org/vks/v1/by-keyid/85AE00C504833B3C)

Why?

PGP is a miserable ecosystem, and there is no good way to get a machine-readable representation of a PGP message without mucking through either an unstable textual CLI output or parsing individual PGP packets.

This tool exists solely to take a key-shaped PGP message and dump (some of) its contents. It doesn't support anything else, will never support anything else, and will never attempt to actually verify the authenticity or integrity of its inputs. It is not suitable for use for anything except exploration of a PGP key message's internals.

Alternatives

If this tool doesn't do what you want, then the closest alternatives are:

  • pgpdump, which is semi-maintained but only provides a textual output (and crashes for me on all kinds of reasonable inputs);
  • sq packet dump, which is maintained but only provides a textual output.
  • gpg --list-packets or gpg --with-colons: Good luck!
Commit count: 0

cargo fmt