Struct dusk_jubjub::BlsScalar[][src]

pub struct BlsScalar(pub [u64; 4]);

Represents an element of the scalar field $\mathbb{F}_q$ of the BLS12-381 elliptic curve construction.

Implementations

impl Scalar[src]

pub const fn zero() -> Scalar[src]

Returns zero, the additive identity.

pub const fn one() -> Scalar[src]

Returns one, the multiplicative identity.

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

Checks in ct_time whether a Scalar is equal to zero.

pub fn is_one(&self) -> Choice[src]

Checks in ct_time whether a Scalar is equal to one.

pub const fn internal_repr(&self) -> &[u64; 4][src]

Returns the internal representation of the Scalar.

pub const fn double(&self) -> Scalar[src]

Doubles this field element.

pub fn to_bits(&self) -> [u8; 256][src]

Returns the bit representation of the given Scalar as an array of 256 bits represented as u8.

pub fn from_bytes_wide(bytes: &[u8; 64]) -> Scalar[src]

Converts a 512-bit little endian integer into a Scalar by reducing by the modulus.

pub const fn from_raw(val: [u64; 4]) -> Scalar[src]

Converts from an integer represented in little endian into its (congruent) Scalar representation.

pub fn random<T>(rand: &mut T) -> Scalar where
    T: RngCore + CryptoRng
[src]

Generate a valid Scalar choosen uniformly using user- provided rng.

By rng we mean any Rng that implements: Rng + CryptoRng.

pub fn reduce(&self) -> Scalar[src]

Reduces the scalar and returns it multiplied by the montgomery radix.

pub const fn square(&self) -> Scalar[src]

Squares this element.

pub fn sqrt(&self) -> CtOption<Scalar>[src]

Computes the square root of this element, if it exists.

pub fn pow(&self, by: &[u64; 4]) -> Scalar[src]

Exponentiates self by by, where by is a little-endian order integer exponent.

pub fn pow_vartime(&self, by: &[u64; 4]) -> Scalar[src]

Exponentiates self by by, where by is a little-endian order integer exponent.

This operation is variable time with respect to the exponent. If the exponent is fixed, this operation is effectively constant time.

pub fn pow_of_2(by: u64) -> Scalar[src]

Computes 2^X where X is a u64 without the need to generate

pub fn invert(&self) -> CtOption<Scalar>[src]

Computes the multiplicative inverse of this element, failing if the element is zero.

pub const fn mul(&self, rhs: &Scalar) -> Scalar[src]

Multiplies rhs by self, returning the result.

pub const fn sub(&self, rhs: &Scalar) -> Scalar[src]

Subtracts rhs from self, returning the result.

pub const fn add(&self, rhs: &Scalar) -> Scalar[src]

Adds rhs to self, returning the result.

pub const fn neg(&self) -> Scalar[src]

Negates self.

pub fn divn(&mut self, n: u32)[src]

SHR impl

Trait Implementations

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

type Output = Scalar

The resulting type after applying the + operator.

impl<'b> Add<&'b Scalar> for Scalar[src]

type Output = Scalar

The resulting type after applying the + operator.

impl<'a> Add<Scalar> for &'a Scalar[src]

type Output = Scalar

The resulting type after applying the + operator.

impl Add<Scalar> for Scalar[src]

type Output = Scalar

The resulting type after applying the + operator.

impl<'b> AddAssign<&'b Scalar> for Scalar[src]

impl AddAssign<Scalar> for Scalar[src]

impl<'a, 'b> BitAnd<&'b Scalar> for &'a Scalar[src]

type Output = Scalar

The resulting type after applying the & operator.

impl BitAnd<Scalar> for Scalar[src]

type Output = Scalar

The resulting type after applying the & operator.

impl<'a, 'b> BitXor<&'b Scalar> for &'a Scalar[src]

type Output = Scalar

The resulting type after applying the ^ operator.

impl BitXor<Scalar> for Scalar[src]

type Output = Scalar

The resulting type after applying the ^ operator.

impl Clone for Scalar[src]

impl ConditionallySelectable for Scalar[src]

impl ConstantTimeEq for Scalar[src]

impl Copy for Scalar[src]

impl Debug for Scalar[src]

impl Default for Scalar[src]

impl Eq for Scalar[src]

impl From<Fr> for BlsScalar[src]

impl From<u64> for Scalar[src]

impl LowerHex for Scalar[src]

impl<'b> Mul<&'b Scalar> for Scalar[src]

type Output = Scalar

The resulting type after applying the * operator.

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

type Output = Scalar

The resulting type after applying the * operator.

impl<'a> Mul<Scalar> for &'a Scalar[src]

type Output = Scalar

The resulting type after applying the * operator.

impl Mul<Scalar> for Scalar[src]

type Output = Scalar

The resulting type after applying the * operator.

impl<'b> MulAssign<&'b Scalar> for Scalar[src]

impl MulAssign<Scalar> for Scalar[src]

impl<'a> Neg for &'a Scalar[src]

type Output = Scalar

The resulting type after applying the - operator.

impl Neg for Scalar[src]

type Output = Scalar

The resulting type after applying the - operator.

impl Ord for Scalar[src]

impl PartialEq<Scalar> for Scalar[src]

impl PartialOrd<Scalar> for Scalar[src]

impl<T> Product<T> for Scalar where
    T: Borrow<Scalar>, 
[src]

impl Serializable<32_usize> for Scalar[src]

type Error = Error

The type returned in the event of a conversion error.

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

Converts an element of Scalar into a byte representation in little-endian byte order.

pub fn from_bytes(
    buf: &[u8; 32]
) -> Result<Scalar, <Scalar as Serializable<32_usize>>::Error>
[src]

Attempts to convert a little-endian byte representation of a scalar into a Scalar, failing if the input is not canonical.

impl StructuralEq for Scalar[src]

impl<'b> Sub<&'b Scalar> for Scalar[src]

type Output = Scalar

The resulting type after applying the - operator.

impl<'a, 'b> Sub<&'b Scalar> for &'a Scalar[src]

type Output = Scalar

The resulting type after applying the - operator.

impl Sub<Scalar> for Scalar[src]

type Output = Scalar

The resulting type after applying the - operator.

impl<'a> Sub<Scalar> for &'a Scalar[src]

type Output = Scalar

The resulting type after applying the - operator.

impl<'b> SubAssign<&'b Scalar> for Scalar[src]

impl SubAssign<Scalar> for Scalar[src]

impl<T> Sum<T> for Scalar where
    T: Borrow<Scalar>, 
[src]

impl UpperHex for Scalar[src]

Auto Trait Implementations

impl RefUnwindSafe for Scalar

impl Send for Scalar

impl Sync for Scalar

impl Unpin for Scalar

impl UnwindSafe for Scalar

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> ConditionallyNegatable for T where
    T: ConditionallySelectable,
    &'a T: for<'a> Neg,
    <&'a T as Neg>::Output == T, 
[src]

impl<T, const N: usize> DeserializableSlice<N> for T where
    T: Serializable<N>, 
[src]

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

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

impl<T, const N: usize> ParseHexStr<N> for T where
    T: Serializable<N>, 
[src]

impl<T> Pointable for T

type Init = T

The type for initializers.

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.