Files
opaque-vx/src/key_exchange/mod.rs
T

19 lines
625 B
Rust
Raw Normal View History

2023-05-22 23:04:26 -07:00
// Copyright (c) Meta Platforms, Inc. and affiliates.
2020-07-13 15:23:29 -07:00
//
2023-05-22 23:04:26 -07:00
// 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
2021-12-03 14:38:11 -08:00
// License, Version 2.0 found in the LICENSE-APACHE file in the root directory
2023-05-22 23:04:26 -07:00
// of this source tree. You may select, at your option, one of the above-listed
// licenses.
2020-07-13 15:23:29 -07:00
2022-01-06 06:19:02 +01:00
//! Includes instantiations of key exchange protocols used in the login step for
//! OPAQUE
2020-07-13 15:23:29 -07:00
2021-10-25 02:54:32 -07:00
pub mod group;
2025-05-19 22:56:25 +02:00
pub(crate) mod shared;
pub mod sigma_i;
2020-07-13 15:23:29 -07:00
pub(crate) mod traits;
pub mod tripledh;
2025-05-19 22:56:25 +02:00
pub use crate::key_exchange::traits::KeyExchange;