Skip to content

Commit fc4cb52

Browse files
authored
impl ED25519-POD as introdction pod (#2)
* impl ED25519-POD as introdction pod * apply review suggestions from @arnaucube --------- Co-authored-by: Sunghyeon Jo <ainta@naver.com>
1 parent 11de6e1 commit fc4cb52

File tree

5 files changed

+512
-2
lines changed

5 files changed

+512
-2
lines changed

.github/workflows/typos.toml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,3 @@
11
[default.extend-words]
2+
[files]
3+
extend-exclude = ["test_keys/*"]

Cargo.toml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,15 @@ itertools = "0.14.0"
88
anyhow = "1.0.56"
99
plonky2 = { git = "https://github.com/0xPolygonZero/plonky2" }
1010
base64 = "0.22.1"
11-
1211
# we use a specific commit to avoid breaking changes in the interfaces, updating
1312
# to latest pod2 version from time to time.
14-
pod2 = { git="https://github.com/0xPARC/pod2", rev="7bc0bd08d29499df15d147e818b3c1dbdfdd5e7e" }
13+
pod2 = { git="https://github.com/0xPARC/pod2", rev="c66506c04871dd87c40284de31490e33e2179804" }
1514

1615
# EcdsaPod specific dependencies:
1716
plonky2_ecdsa = {git = "https://github.com/ax0/plonky2-ecdsa"}
1817
num = { version = "0.4.0", default-features = false }
18+
plonky2_ed25519 = {git = "https://github.com/ainta/plonky2-ed25519"}
19+
ssh-key = { version = "0.6.7", features = ["ed25519"] }
1920

2021
[features]
2122
default = []

0 commit comments

Comments
 (0)