p521 0.13.3

Pure Rust implementation of the NIST P-521 (a.k.a. secp521r1) elliptic curve as defined in SP 800-186
Documentation
use super::{field_impl::*, FieldElement};
use core::ops::Mul;

/// "Loose" field element.
pub(crate) struct LooseFieldElement(pub(super) fiat_p521_loose_field_element);

impl LooseFieldElement {
    /// Reduce field element.
    pub(crate) const fn carry(&self) -> FieldElement {
        FieldElement(fiat_p521_carry(&self.0))
    }

    /// Multiplies two field elements and reduces the result.
    pub(crate) const fn mul(&self, rhs: &Self) -> FieldElement {
        FieldElement(fiat_p521_carry_mul(&self.0, &rhs.0))
    }

    /// Squares a field element and reduces the result.
    pub(crate) const fn square(&self) -> FieldElement {
        FieldElement(fiat_p521_carry_square(&self.0))
    }
}

impl From<FieldElement> for LooseFieldElement {
    #[inline]
    fn from(tight: FieldElement) -> LooseFieldElement {
        LooseFieldElement::from(&tight)
    }
}

impl From<&FieldElement> for LooseFieldElement {
    #[inline]
    fn from(tight: &FieldElement) -> LooseFieldElement {
        tight.relax()
    }
}

impl From<LooseFieldElement> for FieldElement {
    #[inline]
    fn from(loose: LooseFieldElement) -> FieldElement {
        FieldElement::from(&loose)
    }
}

impl From<&LooseFieldElement> for FieldElement {
    #[inline]
    fn from(loose: &LooseFieldElement) -> FieldElement {
        loose.carry()
    }
}

impl Mul for LooseFieldElement {
    type Output = FieldElement;

    #[inline]
    fn mul(self, rhs: LooseFieldElement) -> FieldElement {
        Self::mul(&self, &rhs)
    }
}

impl Mul<&LooseFieldElement> for LooseFieldElement {
    type Output = FieldElement;

    #[inline]
    fn mul(self, rhs: &LooseFieldElement) -> FieldElement {
        Self::mul(&self, rhs)
    }
}

impl Mul<&LooseFieldElement> for &LooseFieldElement {
    type Output = FieldElement;

    #[inline]
    fn mul(self, rhs: &LooseFieldElement) -> FieldElement {
        LooseFieldElement::mul(self, rhs)
    }
}