Skip to main content

UintXgcdOutput

Type Alias UintXgcdOutput 

Source
pub type UintXgcdOutput<const LIMBS: usize> = XgcdOutput<LIMBS, Uint<LIMBS>>;

Aliased Type§

pub struct UintXgcdOutput<const LIMBS: usize> {
    pub gcd: Uint<LIMBS>,
    pub x: Int<LIMBS>,
    pub y: Int<LIMBS>,
    pub lhs_on_gcd: Uint<LIMBS>,
    pub rhs_on_gcd: Uint<LIMBS>,
}

Fields§

§gcd: Uint<LIMBS>

Greatest common divisor

§x: Int<LIMBS>

x;

§y: Int<LIMBS>

y;

§lhs_on_gcd: Uint<LIMBS>

lhs / gcd

§rhs_on_gcd: Uint<LIMBS>

rhs / gcd