aranya-crypto 0.14.1

The Aranya Cryptography Engine
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! TLS utilities.

#![cfg(feature = "tls")]
#![cfg_attr(docsrs, doc(cfg(feature = "tls")))]

mod psk;
mod suite;

pub use psk::{EncryptedPskSeed, Psk, PskId, PskSeed, PskSeedId};
pub use suite::CipherSuiteId;
pub(crate) use suite::Version;