.reuse | ||
card-functionality | ||
example | ||
LICENSES | ||
openpgp-card | ||
openpgp-card-sequoia | ||
pcsc | ||
scdc | ||
.gitignore | ||
.gitlab-ci.yml | ||
.rustfmt.toml | ||
Cargo.toml | ||
README.md |
This project implements client software for the OpenPGP card standard, in Rust.
Architecture
The project consists of the following crates:
- openpgp-card, which offers a relatively low level OpenPGP card client API. It is PGP implementation agnostic.
- openpgp-card-pcsc, a backend to communicate with smartcards via pcsc.
- openpgp-card-scdc, a backend to communicate with smartcards via an scdaemon instance.
- openpgp-card-sequoia, a higher level API for conveniently using openpgp-card with Sequoia PGP.
- openpgp-card-tests, a testsuite to run OpenPGP card operations on smartcards.
graph BT
OP["openpgp-card-pcsc <br/> (pcsclite backend)"] --> OC
OS["openpgp-card-scdc <br/> (scdaemon backend)"] --> OC["openpgp-card <br/> (low level API)"]
OC --> OCS["openpgp-card-sequoia <br/> (high level, sequoia based API)"]
OC -.-> U1[non-sequoia/low level user application]
OCS -.-> U2[sequoia-based user application]
classDef userApp stroke-dasharray: 5 5;
class U1,U2 userApp;
The openpgp-card crate
Implements the functionality described in the OpenPGP card specification, offering an API at roughly the level of abstraction of that specification, using Rust data structures. (However, this crate may work around some minor quirks of specific card models, in order to offer clients a somewhat uniform view) This crate and its API do not depend or rely on an OpenPGP implementation.
Backends
Implement:
-
functionality to find and connect to a card (these operations may vary significantly between different backends), and
-
a very simple communication primitive, by implementing the
CardClient
trait: sending individual APDU commands and receiving responses.
All higher level and/or OpenPGP card-specific logic (including command
chaining) is handled in the openpgp-card
layer.
The openpgp-card-sequoia crate
Offers a higher level interface, based around Sequoia PGP datastructures.
Most client projects will probably want to use only this crate, and ignore the lower level crates as implementation details.
Acknowledgements
This project is based on the OpenPGP Card spec, version 3.4.1.
Other helpful resources included:
- The free Gnuk OpenPGP card implementation by gniibe.
- The Rust/Sequoia-based OpenPGP card client code in kushaldas' project johnnycanencrypt.
- The scdaemon client implementation by the GnuPG project.
- The open-keychain project, which implements an OpenPGP card client for Java/Android.
- The Rust/Sequoia-based OpenPGP card client code by Robin Krahl.