1 //! A library for handling data related to the hardware root-of-trust. The DICE chain is the
2 //! fundamental data structure that other features and services build on top of.
3 
4 pub mod dice;
5 pub mod publickey;
6 pub mod rkp;
7 pub mod session;
8 
9 mod cbor;
10 mod eek;
11