This repository has been archived by the owner on Jan 24, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
expose CommitToPoly as a static method on Element
- Loading branch information
1 parent
ff0dc56
commit 685492d
Showing
3 changed files
with
12 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1 @@ | ||
export { Element } from "./element"; | ||
export { CommitToPoly } from "./element"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,7 @@ | ||
// Export ScalarField | ||
export { ScalarField as Fr } from "./ecc_bindings/index"; | ||
|
||
// Export a Banderwagon group element and the commit to polynomial method | ||
export { Element as Point, CommitToPoly } from "./banderwagon_bindings/index"; | ||
// Export a Banderwagon group element | ||
// | ||
// commitToPoly is a static method on Point | ||
export { Element as Point } from "./banderwagon_bindings/index"; |