summaryrefslogtreecommitdiffstats
path: root/vendor/elliptic-curve/src/arithmetic.rs
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-05-04 12:41:41 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-05-04 12:41:41 +0000
commit10ee2acdd26a7f1298c6f6d6b7af9b469fe29b87 (patch)
treebdffd5d80c26cf4a7a518281a204be1ace85b4c1 /vendor/elliptic-curve/src/arithmetic.rs
parentReleasing progress-linux version 1.70.0+dfsg1-9~progress7.99u1. (diff)
downloadrustc-10ee2acdd26a7f1298c6f6d6b7af9b469fe29b87.tar.xz
rustc-10ee2acdd26a7f1298c6f6d6b7af9b469fe29b87.zip
Merging upstream version 1.70.0+dfsg2.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'vendor/elliptic-curve/src/arithmetic.rs')
-rw-r--r--vendor/elliptic-curve/src/arithmetic.rs87
1 files changed, 87 insertions, 0 deletions
diff --git a/vendor/elliptic-curve/src/arithmetic.rs b/vendor/elliptic-curve/src/arithmetic.rs
new file mode 100644
index 000000000..fa445f1bc
--- /dev/null
+++ b/vendor/elliptic-curve/src/arithmetic.rs
@@ -0,0 +1,87 @@
+//! Elliptic curve arithmetic traits.
+
+use crate::{
+ ops::LinearCombination, AffineXCoordinate, Curve, FieldBytes, IsHigh, PrimeCurve, ScalarCore,
+};
+use core::fmt::Debug;
+use subtle::{ConditionallySelectable, ConstantTimeEq};
+use zeroize::DefaultIsZeroes;
+
+/// Elliptic curve with affine arithmetic implementation.
+#[cfg_attr(docsrs, doc(cfg(feature = "arithmetic")))]
+pub trait AffineArithmetic: Curve + ScalarArithmetic {
+ /// Elliptic curve point in affine coordinates.
+ type AffinePoint: 'static
+ + AffineXCoordinate<Self>
+ + Copy
+ + Clone
+ + ConditionallySelectable
+ + ConstantTimeEq
+ + Debug
+ + Default
+ + DefaultIsZeroes
+ + Eq
+ + PartialEq
+ + Sized
+ + Send
+ + Sync;
+}
+
+/// Prime order elliptic curve with projective arithmetic implementation.
+#[cfg_attr(docsrs, doc(cfg(feature = "arithmetic")))]
+pub trait PrimeCurveArithmetic:
+ PrimeCurve + ProjectiveArithmetic<ProjectivePoint = Self::CurveGroup>
+{
+ /// Prime order elliptic curve group.
+ type CurveGroup: group::prime::PrimeCurve<Affine = <Self as AffineArithmetic>::AffinePoint>;
+}
+
+/// Elliptic curve with projective arithmetic implementation.
+#[cfg_attr(docsrs, doc(cfg(feature = "arithmetic")))]
+pub trait ProjectiveArithmetic: Curve + AffineArithmetic {
+ /// Elliptic curve point in projective coordinates.
+ ///
+ /// Note: the following bounds are provided by [`group::Group`]:
+ /// - `'static`
+ /// - [`Copy`]
+ /// - [`Clone`]
+ /// - [`Debug`]
+ /// - [`Eq`]
+ /// - [`Sized`]
+ /// - [`Send`]
+ /// - [`Sync`]
+ type ProjectivePoint: ConditionallySelectable
+ + ConstantTimeEq
+ + Default
+ + DefaultIsZeroes
+ + From<Self::AffinePoint>
+ + Into<Self::AffinePoint>
+ + LinearCombination
+ + group::Curve<AffineRepr = Self::AffinePoint>
+ + group::Group<Scalar = Self::Scalar>;
+}
+
+/// Scalar arithmetic.
+#[cfg(feature = "arithmetic")]
+#[cfg_attr(docsrs, doc(cfg(feature = "arithmetic")))]
+pub trait ScalarArithmetic: Curve {
+ /// Scalar field type.
+ ///
+ /// Note: the following bounds are provided by [`ff::Field`]:
+ /// - `'static`
+ /// - [`Copy`]
+ /// - [`Clone`]
+ /// - [`ConditionallySelectable`]
+ /// - [`ConstantTimeEq`]
+ /// - [`Debug`]
+ /// - [`Default`]
+ /// - [`Send`]
+ /// - [`Sync`]
+ type Scalar: DefaultIsZeroes
+ + From<ScalarCore<Self>>
+ + Into<FieldBytes<Self>>
+ + Into<Self::UInt>
+ + IsHigh
+ + ff::Field
+ + ff::PrimeField<Repr = FieldBytes<Self>>;
+}