Struct secp256kfun_parity_backend::field::Field[][src]

pub struct Field { /* fields omitted */ }

Field element for secp256k1.

Implementations

impl Field[src]

pub const fn new_raw(
    d9: u32,
    d8: u32,
    d7: u32,
    d6: u32,
    d5: u32,
    d4: u32,
    d3: u32,
    d2: u32,
    d1: u32,
    d0: u32
) -> Self
[src]

pub const fn new(
    d7: u32,
    d6: u32,
    d5: u32,
    d4: u32,
    d3: u32,
    d2: u32,
    d1: u32,
    d0: u32
) -> Self
[src]

pub fn from_int(a: u32) -> Field[src]

pub fn normalize(&mut self)[src]

Normalize a field element.

pub fn normalize_weak(&mut self)[src]

Weakly normalize a field element: reduce it magnitude to 1, but don't fully normalize.

pub fn normalize_var(&mut self)[src]

Normalize a field element, without constant-time guarantee.

pub fn normalizes_to_zero(&self) -> bool[src]

Verify whether a field element represents zero i.e. would normalize to a zero value. The field implementation may optionally normalize the input, but this should not be relied upon.

pub fn normalizes_to_zero_var(&self) -> bool[src]

Verify whether a field element represents zero i.e. would normalize to a zero value. The field implementation may optionally normalize the input, but this should not be relied upon.

pub fn set_int(&mut self, a: u32)[src]

Set a field element equal to a small integer. Resulting field element is normalized.

pub fn is_zero(&self) -> bool[src]

Verify whether a field element is zero. Requires the input to be normalized.

pub fn is_odd(&self) -> bool[src]

Check the "oddness" of a field element. Requires the input to be normalized.

pub fn clear(&mut self)[src]

Sets a field element equal to zero, initializing all fields.

#[must_use]pub fn set_b32(&mut self, a: &[u8; 32]) -> bool[src]

Set a field element equal to 32-byte big endian value. If successful, the resulting field element is normalized.

pub fn fill_b32(&self, r: &mut [u8; 32])[src]

pub fn b32(&self) -> [u8; 32][src]

Convert a field element to a 32-byte big endian value. Requires the input to be normalized.

pub fn neg_in_place(&mut self, other: &Field, m: u32)[src]

Set a field element equal to the additive inverse of another. Takes a maximum magnitude of the input as an argument. The magnitude of the output is one higher.

pub fn neg(&self, m: u32) -> Field[src]

Compute the additive inverse of this element. Takes the maximum expected magnitude of this element as an argument.

pub fn mul_int(&mut self, a: u32)[src]

Multiplies the passed field element with a small integer constant. Multiplies the magnitude by that small integer.

pub fn cmp_var(&self, other: &Field) -> Ordering[src]

Compare two field elements. Requires both inputs to be normalized.

pub fn eq_var(&self, other: &Field) -> bool[src]

pub fn mul_in_place(&mut self, a: &Field, b: &Field)[src]

Sets a field element to be the product of two others. Requires the inputs' magnitudes to be at most 8. The output magnitude is 1 (but not guaranteed to be normalized).

pub fn sqr_in_place(&mut self, a: &Field)[src]

Sets a field element to be the square of another. Requires the input's magnitude to be at most 8. The output magnitude is 1 (but not guaranteed to be normalized).

pub fn sqr(&self) -> Field[src]

pub fn sqrt(&self) -> (Field, bool)[src]

If a has a square root, it is computed in r and 1 is returned. If a does not have a square root, the root of its negation is computed and 0 is returned. The input's magnitude can be at most 8. The output magnitude is 1 (but not guaranteed to be normalized). The result in r will always be a square itself.

pub fn inv(&self) -> Field[src]

Sets a field element to be the (modular) inverse of another. Requires the input's magnitude to be at most 8. The output magnitude is 1 (but not guaranteed to be normalized).

pub fn inv_var(&self) -> Field[src]

Potentially faster version of secp256k1_fe_inv, without constant-time guarantee.

pub fn is_quad_var(&self) -> bool[src]

Checks whether a field element is a quadratic residue.

pub fn cmov(&mut self, other: &Field, flag: bool)[src]

If flag is true, set *r equal to *a; otherwise leave it. Constant-time.

Trait Implementations

impl<'a, 'b> Add<&'a Field> for &'b Field[src]

type Output = Field

The resulting type after applying the + operator.

impl Add<Field> for Field[src]

type Output = Field

The resulting type after applying the + operator.

impl<'a> AddAssign<&'a Field> for Field[src]

impl AddAssign<Field> for Field[src]

impl Clone for Field[src]

impl ConditionallySelectable for Field[src]

impl Copy for Field[src]

impl Debug for Field[src]

impl Default for Field[src]

impl Eq for Field[src]

impl From<FieldStorage> for Field[src]

impl Into<FieldStorage> for Field[src]

impl<'a, 'b> Mul<&'a Field> for &'b Field[src]

type Output = Field

The resulting type after applying the * operator.

impl Mul<Field> for Field[src]

type Output = Field

The resulting type after applying the * operator.

impl<'a> MulAssign<&'a Field> for Field[src]

impl MulAssign<Field> for Field[src]

impl Ord for Field[src]

impl PartialEq<Field> for Field[src]

impl PartialOrd<Field> for Field[src]

Auto Trait Implementations

impl Send for Field

impl Sync for Field

impl Unpin for Field

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.