aws_lc_rs/aead/
nonce_sequence.rs

1
2
3
4
5
6
7
8
9
10
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
// SPDX-License-Identifier: Apache-2.0 OR ISC

//! Implementations of `NonceSequence` for use with `BoundKey`s.

mod counter32;
mod counter64;

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