From 3bb2420a0919b8644d1f39276ece807b6610d63a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B8r=E2=88=82=C2=A1?= Date: Fri, 5 Feb 2021 21:51:32 +0100 Subject: [PATCH] Exporting big integer and point --- src/index.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/index.ts b/src/index.ts index 282f65d..1bc1d58 100644 --- a/src/index.ts +++ b/src/index.ts @@ -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 }