mirror of
https://github.com/saymrwulf/pasta_curves-source.git
synced 2026-09-04 20:03:39 +00:00
Remove unnecessary bounds on CurveExt
They are already bounds on `group::Group`, which `CurveExt` inherits via `group::prime::PrimeCurve`.
This commit is contained in:
parent
1b2f581ac1
commit
e31787d462
1 changed files with 0 additions and 3 deletions
|
|
@ -12,7 +12,6 @@ use super::{FieldExt, Group};
|
|||
#[cfg(feature = "std")]
|
||||
use std::{
|
||||
boxed::Box,
|
||||
cmp,
|
||||
io::{self, Read, Write},
|
||||
ops::{Add, Mul, Sub},
|
||||
};
|
||||
|
|
@ -28,8 +27,6 @@ pub trait CurveExt:
|
|||
PrimeCurve<Affine = <Self as CurveExt>::AffineExt>
|
||||
+ group::Group<Scalar = <Self as CurveExt>::ScalarExt>
|
||||
+ Default
|
||||
+ PartialEq
|
||||
+ cmp::Eq
|
||||
+ ConditionallySelectable
|
||||
+ ConstantTimeEq
|
||||
+ From<<Self as PrimeCurve>::Affine>
|
||||
|
|
|
|||
Loading…
Reference in a new issue