pub struct DynResidueParams<const LIMBS: usize> { /* private fields */ }
Expand description

The parameters to efficiently go to and from the Montgomery form for an odd modulus provided at runtime.

Implementations§

source§

impl<const LIMBS: usize> DynResidueParams<LIMBS>

source

pub const fn new(modulus: &Uint<LIMBS>) -> Self

Instantiates a new set of ResidueParams representing the given modulus, which must be odd. If modulus is not odd, this function will panic; use new_checked if you want to be able to detect an invalid modulus.

source

pub fn new_checked(modulus: &Uint<LIMBS>) -> CtOption<Self>

👎Deprecated since 0.5.3: This functionality will be moved to new in a future release.

Instantiates a new set of ResidueParams representing the given modulus if it is odd. Returns a CtOption that is None if the provided modulus is not odd; this is a safer version of new, which can panic.

source

pub const fn modulus(&self) -> &Uint<LIMBS>

Returns the modulus which was used to initialize these parameters.

source

pub const fn from_residue_params<P>() -> Selfwhere P: ResidueParams<LIMBS>,

Create DynResidueParams corresponding to a ResidueParams.

Trait Implementations§

source§

impl<const LIMBS: usize> Clone for DynResidueParams<LIMBS>

source§

fn clone(&self) -> DynResidueParams<LIMBS>

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl<const LIMBS: usize> ConditionallySelectable for DynResidueParams<LIMBS>

source§

fn conditional_select(a: &Self, b: &Self, choice: Choice) -> Self

Select a or b according to choice. Read more
source§

fn conditional_assign(&mut self, other: &Self, choice: Choice)

Conditionally assign other to self, according to choice. Read more
source§

fn conditional_swap(a: &mut Self, b: &mut Self, choice: Choice)

Conditionally swap self and other if choice == 1; otherwise, reassign both unto themselves. Read more
source§

impl<const LIMBS: usize> ConstantTimeEq for DynResidueParams<LIMBS>

source§

fn ct_eq(&self, other: &Self) -> Choice

Determine if two items are equal. Read more
source§

fn ct_ne(&self, other: &Self) -> Choice

Determine if two items are NOT equal. Read more
source§

impl<const LIMBS: usize> Debug for DynResidueParams<LIMBS>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<const LIMBS: usize> PartialEq for DynResidueParams<LIMBS>

source§

fn eq(&self, other: &DynResidueParams<LIMBS>) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl<const LIMBS: usize> Copy for DynResidueParams<LIMBS>

source§

impl<const LIMBS: usize> Eq for DynResidueParams<LIMBS>

source§

impl<const LIMBS: usize> StructuralEq for DynResidueParams<LIMBS>

source§

impl<const LIMBS: usize> StructuralPartialEq for DynResidueParams<LIMBS>

Auto Trait Implementations§

§

impl<const LIMBS: usize> RefUnwindSafe for DynResidueParams<LIMBS>

§

impl<const LIMBS: usize> Send for DynResidueParams<LIMBS>

§

impl<const LIMBS: usize> Sync for DynResidueParams<LIMBS>

§

impl<const LIMBS: usize> Unpin for DynResidueParams<LIMBS>

§

impl<const LIMBS: usize> UnwindSafe for DynResidueParams<LIMBS>

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for Twhere U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> Same for T

§

type Output = T

Should always be Self
source§

impl<T> ToOwned for Twhere T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.