gostcurves - v0.1.4
    Preparing search index...

    Interface GostCurveParameters

    Parameters for GOST curves

    interface GostCurveParameters {
        a: bigint;
        b: bigint;
        d?: bigint;
        e?: bigint;
        Gx: bigint;
        Gy: bigint;
        h: bigint;
        length: number;
        n: bigint;
        oids?: string[];
        p: bigint;
        st?: bigint[];
    }
    Index

    Properties

    Properties

    a: bigint

    Param a

    b: bigint

    Param b

    d?: bigint

    Param d for representation as Twisted Edwards

    e?: bigint

    Param e (a) for representation as Twisted Edwards

    Gx: bigint

    Base point X coordinate

    Gy: bigint

    Base point Y coordinate

    h: bigint

    Cofactor

    length: number

    Curve point length

    n: bigint

    Curve order (Fn)

    oids?: string[]

    Curve OIDs

    p: bigint

    Prime field (Fp)

    st?: bigint[]

    Precomputed parameters for point conversion