Struct secp256k1::curve::Field [] [src]

pub struct Field { /* fields omitted */ }

Field element for secp256k1.

Methods

impl Field
[src]

[src]

[src]

[src]

Normalize a field element.

[src]

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

[src]

Normalize a field element, without constant-time guarantee.

[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.

[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.

[src]

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

[src]

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

[src]

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

[src]

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

[src]

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

[src]

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

[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.

[src]

[src]

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

[src]

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

[src]

[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).

[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).

[src]

[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.

[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).

[src]

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

[src]

Checks whether a field element is a quadratic residue.

[src]

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

Trait Implementations

impl Debug for Field
[src]

[src]

Formats the value using the given formatter.

impl Clone for Field
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Default for Field
[src]

[src]

Returns the "default value" for a type. Read more

impl Add<Field> for Field
[src]

The resulting type after applying the + operator.

[src]

Performs the + operation.

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

The resulting type after applying the + operator.

[src]

Performs the + operation.

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

[src]

Performs the += operation.

impl AddAssign<Field> for Field
[src]

[src]

Performs the += operation.

impl Mul<Field> for Field
[src]

The resulting type after applying the * operator.

[src]

Performs the * operation.

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

The resulting type after applying the * operator.

[src]

Performs the * operation.

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

[src]

Performs the *= operation.

impl MulAssign<Field> for Field
[src]

[src]

Performs the *= operation.

impl PartialEq for Field
[src]

[src]

This method tests for self and other values to be equal, and is used by ==. Read more

1.0.0
[src]

This method tests for !=.

impl Eq for Field
[src]

impl Ord for Field
[src]

[src]

This method returns an Ordering between self and other. Read more

1.22.0
[src]

Compares and returns the maximum of two values. Read more

1.22.0
[src]

Compares and returns the minimum of two values. Read more

impl PartialOrd for Field
[src]

[src]

This method returns an ordering between self and other values if one exists. Read more

1.0.0
[src]

This method tests less than (for self and other) and is used by the < operator. Read more

1.0.0
[src]

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more

1.0.0
[src]

This method tests greater than (for self and other) and is used by the > operator. Read more

1.0.0
[src]

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more

impl From<FieldStorage> for Field
[src]

[src]

Performs the conversion.

impl Into<FieldStorage> for Field
[src]

[src]

Performs the conversion.