at-cryptoauth 0.4.0

Driver for ATECC608 Crypto Authentication secure elements
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#![no_std]
mod client;
mod clock_divider;
mod command;
mod datalink;
pub mod error;
pub mod memory;
mod packet;
pub mod tngtls;

pub use client::{AtCaClient, Memory};
pub use command::{Block, Digest, PublicKey, Signature};
pub use packet::CRC16;
pub use signature;