jf_relation/gadgets/ecc/emulated/mod.rs
// Copyright (c) 2022 Espresso Systems (espressosys.com)
// This file is part of the Jellyfish library.
// You should have received a copy of the MIT License
// along with the Jellyfish library. If not, see <https://mit-license.org/>.
//! Elliptic curve related gates and gadgets for non-native fields
mod short_weierstrass;
mod twisted_edwards;
pub use short_weierstrass::*;
pub use twisted_edwards::*;