openpgp-card/openpgp-card
Heiko Schaefer 465847ea79
openpgp-card: ExtendedCapabilities, make v2 command length getters private.
Command length negotiation is handled in this library, this information should never be useful to callers.
2023-09-06 01:16:32 +02:00
..
src openpgp-card: ExtendedCapabilities, make v2 command length getters private. 2023-09-06 01:16:32 +02:00
Cargo.toml Move backend traits to new card-backend crate 2023-08-27 22:24:16 +02:00
README.md Move backend traits to new card-backend crate 2023-08-27 22:24:16 +02:00

OpenPGP card client library

This crate implements a client library for the OpenPGP card specification, in Rust.

This library provides low level, OpenPGP implementation-agnostic access to OpenPGP cards. Its communication with cards is based on simple data structures that closely match the formats defined in the OpenPGP card specification.

Card access backends

This crate doesn't contain code to talk to cards. Implementations of the traits CardBackend/CardTransaction need to be provided for access to cards.

The crates card-backend-pcsc and the experimental crate card-backend-scdc provide implementations of these traits for use with this crate.

Sequoia PGP wrapper

See the companion crate openpgp-card-sequoia for a high level wrapper to use this library with Sequoia PGP.