Struct libsecp256k1::curve::Field
source · [−]pub struct Field { /* private fields */ }
Expand description
Field element for secp256k1.
Implementations
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
) -> Field
Weakly normalize a field element: reduce it magnitude to 1, but don’t fully normalize.
Normalize a field element, without constant-time guarantee.
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.
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.
Set a field element equal to a small integer. Resulting field element is normalized.
Verify whether a field element is zero. Requires the input to be normalized.
Check the “oddness” of a field element. Requires the input to be normalized.
Set a field element equal to 32-byte big endian value. If successful, the resulting field element is normalized.
Convert a field element to a 32-byte big endian value. Requires the input to be normalized.
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.
Compute the additive inverse of this element. Takes the maximum expected magnitude of this element as an argument.
Multiplies the passed field element with a small integer constant. Multiplies the magnitude by that small integer.
Compare two field elements. Requires both inputs to be normalized.
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).
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).
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.
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).
Potentially faster version of secp256k1_fe_inv, without constant-time guarantee.
Checks whether a field element is a quadratic residue.
Trait Implementations
Performs the +=
operation. Read more
Performs the +=
operation. Read more
Performs the conversion.
Performs the conversion.
Performs the *=
operation. Read more
Performs the *=
operation. Read more
This method returns an ordering between self
and other
values if one exists. Read more
This method tests less than (for self
and other
) and is used by the <
operator. Read more
This method tests less than or equal to (for self
and other
) and is used by the <=
operator. Read more
This method tests greater than (for self
and other
) and is used by the >
operator. Read more
Auto Trait Implementations
impl RefUnwindSafe for Field
impl UnwindSafe for Field
Blanket Implementations
Mutably borrows from an owned value. Read more