Browse Source

Exporting big integer and point

pull/4/head
Jør∂¡ 3 years ago
parent
commit
3bb2420a09
1 changed files with 2 additions and 0 deletions
  1. +2
    -0
      src/index.ts

+ 2
- 0
src/index.ts

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

Loading…
Cancel
Save