ifd-jcecard 0.2.0

PC/SC IFD Handler for jcecard virtual OpenPGP and PIV smart card
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Card data structures and storage
//!
//! This module contains the card state structures that match the Python
//! JSON format for backward compatibility.

pub mod state;
pub mod storage;
pub mod atr;

pub use state::{
    CardState, CardholderData, KeySlot, PINData, AlgorithmAttributes,
    AlgorithmID, CurveOID,
};
pub use storage::CardDataStore;
pub use atr::{DEFAULT_ATR, build_atr};