jf_relation/gadgets/ecc/emulated/
mod.rs

1// Copyright (c) 2022 Espresso Systems (espressosys.com)
2// This file is part of the Jellyfish library.
3
4// You should have received a copy of the MIT License
5// along with the Jellyfish library. If not, see <https://mit-license.org/>.
6
7//! Elliptic curve related gates and gadgets for non-native fields
8
9mod short_weierstrass;
10mod twisted_edwards;
11
12pub use short_weierstrass::*;
13pub use twisted_edwards::*;