rust-cryptoauthlib 0.4.5

Rust wrappers for CryptoAuthentication Library bindings.
Documentation
1
2
3
4
5
6
7
8
9
pub fn test_setup(default_result: String) -> super::AteccDevice {
    let iface_cfg = super::AtcaIfaceCfg::default();
    super::setup_atecc_device(
        iface_cfg
            .set_iface_type("test-interface".to_owned())
            .set_devtype(default_result),
    )
    .unwrap()
}