forked from hacspec/specs
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* halo2 spec * fixed name * fixed dependency path to git * added table.md and katex-header * Generic implementations of elliptic curves on the weiestrass form --------- Co-authored-by: Lasse Bramer Schmidt <[email protected]>
- Loading branch information
1 parent
82048ba
commit 7500e3e
Showing
7 changed files
with
6,429 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -21,4 +21,6 @@ members = [ | |
"edwards25519", | ||
"ed25519", | ||
"pasta", | ||
"halo2", | ||
"weierstrass-curves", | ||
] |
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 |
---|---|---|
@@ -0,0 +1,17 @@ | ||
[package] | ||
name = "hacspec-halo2" | ||
version = "0.1.0" | ||
authors = ["Lasse Bramer Schmidt <[email protected]>", "Rasmus Tomtava Bjerg <[email protected]>"] | ||
edition = "2018" | ||
|
||
[lib] | ||
path = "src/halo2.rs" | ||
|
||
[dependencies] | ||
hacspec-lib = { git = "https://github.com/hacspec/hacspec.git" } | ||
hacspec-pasta = { path = "../pasta" } | ||
|
||
[dev-dependencies] | ||
quickcheck = "1" | ||
quickcheck_macros = "1" | ||
rand = "0.8.5" |
Oops, something went wrong.