15 lines
468 B
JavaScript
15 lines
468 B
JavaScript
|
import { SecretKey } from "./secretKey.js";
|
||
|
import { PublicKey } from "./publicKey.js";
|
||
|
import { Signature } from "./signature.js";
|
||
|
import { functionalInterfaceFactory } from "../functional.js";
|
||
|
export * from "../constants.js";
|
||
|
export { SecretKey, PublicKey, Signature };
|
||
|
export const bls = {
|
||
|
implementation: "blst-native",
|
||
|
SecretKey,
|
||
|
PublicKey,
|
||
|
Signature,
|
||
|
...functionalInterfaceFactory({ SecretKey, PublicKey, Signature }),
|
||
|
};
|
||
|
export default bls;
|