aws_lc_rs/aead/nonce_sequence.rs
1// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
2// SPDX-License-Identifier: Apache-2.0 OR ISC
3
4//! Implementations of `NonceSequence` for use with `BoundKey`s.
5
6mod counter32;
7mod counter64;
8
9pub use counter32::{Counter32, Counter32Builder};
10pub use counter64::{Counter64, Counter64Builder};