Fix weierstrass type

This commit is contained in:
Paul Miller 2023-02-09 22:18:32 +00:00
parent 8e449cc78c
commit c0877ba69a
No known key found for this signature in database
GPG Key ID: 697079DA6878B89B

@ -640,6 +640,7 @@ export type CurveFn = {
isValidPrivateKey(privateKey: PrivKey): boolean;
hashToPrivateKey: (hash: Hex) => Uint8Array;
randomPrivateKey: () => Uint8Array;
precompute: (windowSize?: number, point?: ProjPointType<bigint>) => ProjPointType<bigint>;
};
};