* Rework `SecretKey` API to facilitate async * Remove left-over constraints
18 lines
548 B
Rust
18 lines
548 B
Rust
// Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
//
|
|
// This source code is dual-licensed under either the MIT license found in the
|
|
// LICENSE-MIT file in the root directory of this source tree or the Apache
|
|
// License, Version 2.0 found in the LICENSE-APACHE file in the root directory
|
|
// of this source tree. You may select, at your option, one of the above-listed
|
|
// licenses.
|
|
|
|
mod full_test;
|
|
#[rustfmt::skip]
|
|
mod full_test_vectors;
|
|
pub mod mock_rng;
|
|
mod opaque_vectors;
|
|
mod parser;
|
|
#[cfg(test_hsm)]
|
|
mod remote_key;
|
|
mod test_opaque_vectors;
|