Merge pull request #4 from brickpop/feature/import-point-hex

Exporting big integer and point
This commit is contained in:
arnau
2021-02-05 21:53:42 +01:00
committed by GitHub

View File

@@ -8,6 +8,8 @@ const G = ecparams.G
const n = ecparams.n as BigInteger
export { ecparams }
export { BigInteger }
export { Point }
export type UserSecretData = { a: BigInteger, b: BigInteger, f: Point }
export type UnblindedSignature = { s: BigInteger, f: Point }