[][src]Struct art_p256::A256

pub struct A256 {
    pub r: [u32; 8],
}

Fields

r: [u32; 8]

Implementations

impl A256[src]

pub fn to_readable(self) -> String[src]

pub fn new(a: [u32; 8]) -> A256[src]

Trait Implementations

impl Add<A256> for A256[src]

Dodawanie liczb w ciele $F_p$, gdzie $p=2^{256}-2^{224}+2^{192]+2^{96}-1$.

type Output = A256

The resulting type after applying the + operator.

impl Clone for A256[src]

impl Copy for A256[src]

impl Debug for A256[src]

impl Mul<A256> for A256[src]

Mnożenie liczb w ciele $F_p$, gdzie $p=2^{256}-2^{224}+2^{192]+2^{96}-1$.

type Output = A256

The resulting type after applying the * operator.

impl PartialEq<A256> for A256[src]

impl PartialOrd<A256> for A256[src]

impl StructuralPartialEq for A256[src]

impl Sub<A256> for A256[src]

Odejmowanie liczb w ciele $F_p$, gdzie $p=2^{256}-2^{224}+2^{192]+2^{96}-1$.

type Output = A256

The resulting type after applying the - operator.

Auto Trait Implementations

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