mlkem
Version:
An ML-KEM/CRYSTALS-KYBER implementation written in TypeScript for various JavaScript runtimes
11 lines • 459 B
TypeScript
/**
* This implementation is based on https://github.com/antontutoveanu/crystals-kyber-javascript,
* which was deveploped under the MIT licence below:
* https://github.com/antontutoveanu/crystals-kyber-javascript/blob/main/LICENSE
*/
export declare const N = 256;
export declare const Q = 3329;
export declare const Q_INV = 62209;
export declare const NTT_ZETAS: number[];
export declare const NTT_ZETAS_INV: number[];
//# sourceMappingURL=consts.d.ts.map