iso7816-tlv 0.4.2

tools and utilities for handling TLV data as defined in ISO/IEC 7816-4
Documentation
//! This module provides tools and utilities for handling BER-TLV data as
//! defined in [ISO7816-4][iso7816-4].
//!
//!
//!
//!
//! [iso7816-4]: https://www.iso.org/standard/54550.html

// internal organization
mod tag;
mod tlv;
mod value;

// custom reexport (structs at same level for users)
pub use tag::{Class, Tag};
pub use tlv::Tlv;
pub use value::Value;