redoubt 0.1.0-rc.6

Systematic encryption-at-rest for in-memory sensitive data in Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// Copyright (c) 2025-2026 Federico Hoerth <memparanoid@gmail.com>
// SPDX-License-Identifier: GPL-3.0-only
// See LICENSE in the repository root for full license text.

//! Test utilities re-exported from redoubt-aead and redoubt-codec

#[cfg(feature = "test-utils")]
pub mod aead {
    pub use redoubt_aead::support::test_utils::*;
}
#[cfg(feature = "test-utils")]
pub mod codec {
    pub use redoubt_codec::support::test_utils::*;
}
#[cfg(feature = "test-utils")]
pub mod rand {
    pub use redoubt_rand::support::test_utils::*;
}