snarkvm_curves/bls12_377/
mod.rs

1// Copyright (c) 2019-2025 Provable Inc.
2// This file is part of the snarkVM library.
3
4// Licensed under the Apache License, Version 2.0 (the "License");
5// you may not use this file except in compliance with the License.
6// You may obtain a copy of the License at:
7
8// http://www.apache.org/licenses/LICENSE-2.0
9
10// Unless required by applicable law or agreed to in writing, software
11// distributed under the License is distributed on an "AS IS" BASIS,
12// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13// See the License for the specific language governing permissions and
14// limitations under the License.
15
16#![doc = include_str!("../../documentation/the_aleo_curves/02_bls12-377.md")]
17
18pub mod fr;
19#[doc(inline)]
20pub use fr::*;
21
22pub mod fq;
23#[doc(inline)]
24pub use fq::*;
25
26pub mod fq2;
27#[doc(inline)]
28pub use fq2::*;
29
30pub mod fq6;
31#[doc(inline)]
32pub use fq6::*;
33
34pub mod fq12;
35#[doc(inline)]
36pub use fq12::*;
37
38pub mod g1;
39#[doc(inline)]
40pub use g1::*;
41
42pub mod g2;
43#[doc(inline)]
44pub use g2::*;
45
46pub mod parameters;
47#[doc(inline)]
48pub use parameters::*;
49
50#[cfg(test)]
51mod tests;