This commit is contained in:
Neemek 2026-05-15 11:35:58 +02:00
parent a3d05f24e3
commit 116fd34fc9
Signed by: neemek
GPG key ID: 84FFE4D7D40AB25E
2 changed files with 1 additions and 4 deletions

View file

@ -1,7 +1,6 @@
use crate::traits::{Curve, Point};
use crypto_bigint::{AddMod, BitOps, ConstZero, Integer, InvertMod, MulMod, NonZero, SubMod, Uint, U448};
use crypto_bigint::{AddMod, BitOps, ConstZero, Integer, InvertMod, MulMod, NonZero, SubMod, U448};
use std::ops::Div;
use std::process::Output;
#[derive(Clone, Copy)]
pub struct EdwardsCurve<N>

View file

@ -10,8 +10,6 @@ pub use crypto_bigint::{Encoding, NonZero, U256};
use crate::traits::{Curve, Point};
use crypto_bigint::{Choice, CtEq, EncodedUint, Random};
#[cfg(feature = "rand")]
use crypto_bigint::rand_core::{CryptoRng, RngCore};
pub(crate) use montgomery::*;
#[derive(Debug, Clone, Copy, Eq, PartialEq)]