@dedis/kyber
Version:
A typescript implementation of Kyber interfaces
23 lines (22 loc) • 491 B
TypeScript
import BN from "bn.js";
import Weierstrass from "./curve";
import NistPoint from "./point";
import NistScalar from "./scalar";
declare const _default: {
Curve: typeof Weierstrass;
Params: {
p256: {
name: string;
bitSize: number;
p: BN;
a: BN;
b: BN;
n: BN;
gx: BN;
gy: BN;
};
};
Point: typeof NistPoint;
Scalar: typeof NistScalar;
};
export default _default;