UNPKG

@dedis/kyber

Version:

A typescript implementation of Kyber interfaces

14 lines (13 loc) 455 B
import * as curve from "./curve"; import * as pairing from "./pairing"; import PointFactory from "./point-factory"; import * as sign from "./sign"; import { Group, Point, Scalar } from "./suite"; export { curve, sign, pairing, PointFactory, Group, Point, Scalar, }; declare const _default: { PointFactory: import("./point-factory").PointFactory; curve: typeof curve; pairing: typeof pairing; sign: typeof sign; }; export default _default;