wolfcrypt-ring-compat 1.16.4

wolfcrypt-ring-compat is a cryptographic library using wolfSSL for its cryptographic operations. This library strives to be API-compatible with the popular Rust library named ring.
1
2
3
4
5
6
7
//! Implementations of `NonceSequence` for use with `BoundKey`s.

mod counter32;
mod counter64;

pub use counter32::{Counter32, Counter32Builder};
pub use counter64::{Counter64, Counter64Builder};