baseid_mdl/lib.rs
1//! # baseid-mdl
2//!
3//! ISO/IEC 18013-5 mobile driving licence (mDL) implementation.
4//!
5//! Supports:
6//! - mdoc CBOR encoding and decoding
7//! - Mobile Security Object (MSO) creation and verification
8//! - Device authentication and reader authentication
9//! - Selective disclosure of data elements
10//!
11//! Reference: ISO/IEC 18013-5:2021
12
13pub mod cose;
14pub mod device;
15pub mod lifecycle;
16pub mod mdoc;
17pub mod mso;
18
19pub use mdoc::MobileDocument;