wlan_fcg_crypto/lib.rs
1// Copyright 2019 The Fuchsia Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5//! Library containing:
6//! - Finite Cyclic Group (FCG) cryptographic operations.
7//! - Implementations of WLAN security features that leverage FCG cryptographic operations,
8//! such as Simultaneous Authentication of Equals (SAE) and Opportunistic Wireless
9//! Encryption (OWE).
10mod boringssl;
11mod ecc;
12mod fcg;
13pub mod hmac_utils;
14pub mod owe;
15pub mod sae;