1pub use core::ops::{Add, AddAssign, Mul, Neg, Sub, SubAssign};
4
5use crypto_bigint::{ArrayEncoding, ByteArray, Integer};
6
7#[cfg(feature = "arithmetic")]
8use {group::Group, subtle::CtOption};
9
10#[cfg(feature = "digest")]
11use digest::FixedOutput;
12
13pub trait Invert {
15 type Output;
17
18 fn invert(&self) -> Self::Output;
20}
21
22#[cfg(feature = "arithmetic")]
23impl<F: ff::Field> Invert for F {
24 type Output = CtOption<F>;
25
26 fn invert(&self) -> CtOption<F> {
27 ff::Field::invert(self)
28 }
29}
30
31#[cfg(feature = "arithmetic")]
38#[cfg_attr(docsrs, doc(cfg(feature = "arithmetic")))]
39pub trait LinearCombination: Group {
40 fn lincomb(x: &Self, k: &Self::Scalar, y: &Self, l: &Self::Scalar) -> Self {
42 (*x * k) + (*y * l)
43 }
44}
45
46pub trait Reduce<UInt: Integer + ArrayEncoding>: Sized {
48 fn from_uint_reduced(n: UInt) -> Self;
50
51 fn from_be_bytes_reduced(bytes: ByteArray<UInt>) -> Self {
54 Self::from_uint_reduced(UInt::from_be_byte_array(bytes))
55 }
56
57 fn from_le_bytes_reduced(bytes: ByteArray<UInt>) -> Self {
60 Self::from_uint_reduced(UInt::from_le_byte_array(bytes))
61 }
62
63 #[cfg(feature = "digest")]
66 #[cfg_attr(docsrs, doc(cfg(feature = "digest")))]
67 fn from_be_digest_reduced<D>(digest: D) -> Self
68 where
69 D: FixedOutput<OutputSize = UInt::ByteSize>,
70 {
71 Self::from_be_bytes_reduced(digest.finalize_fixed())
72 }
73
74 #[cfg(feature = "digest")]
77 #[cfg_attr(docsrs, doc(cfg(feature = "digest")))]
78 fn from_le_digest_reduced<D>(digest: D) -> Self
79 where
80 D: FixedOutput<OutputSize = UInt::ByteSize>,
81 {
82 Self::from_le_bytes_reduced(digest.finalize_fixed())
83 }
84}
85
86pub trait ReduceNonZero<UInt: Integer + ArrayEncoding>: Sized {
94 fn from_uint_reduced_nonzero(n: UInt) -> Self;
96}