Browse Source
Merge pull request #4 from brickpop/feature/import-point-hex
Exporting big integer and point
feature/import-point-hex
arnau
3 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
2 additions and
0 deletions
-
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 } |
|
|
|