Exporting big integer and point

This commit is contained in:
Jør∂¡
2021-02-05 21:51:32 +01:00
parent e387f3ab20
commit 3bb2420a09

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 }