Skip to content

Commit

Permalink
update to work with PSE halo2 0.3.0
Browse files Browse the repository at this point in the history
- simpify protocol
- rebase on dev
- add mock backend
- fix failing tests
- use dedicated field element for salt
  • Loading branch information
themighty1 committed Feb 19, 2024
1 parent f9f4a08 commit 2587d3a
Show file tree
Hide file tree
Showing 33 changed files with 16,124 additions and 0 deletions.
35 changes: 35 additions & 0 deletions authdecode/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
[package]
name = "authdecode"
version = "0.1.0"
edition = "2021"

[lib]
name = "authdecode"

[dependencies]
thiserror = "1.0.56"
num = "0.4.1"
rand = "0.8.5"
rand_chacha = "0.3.1"
sha2 = { version = "0.10.8", features = ["compress"] }
opaque-debug = "0.3.0"
mpz-core = { git = "https://github.com/privacy-scaling-explorations/mpz", commit = "499b75d20397235f8399817a53c65fa2d399d3b8"}
blake3 = "1.3.3"
serde = "1"
bincode = "1"

halo2_proofs = { git = "https://github.com/privacy-scaling-explorations/halo2", tag = "v0.3.0", default-features = false}
halo2_poseidon = { git = "https://github.com/privacy-scaling-explorations/poseidon-gadget", rev="764a682"}

group = "0.13"
ff = "0.13"


[dev-dependencies]
hex = "0.4.3"
num-bigint = { version = "0.4.4", features = ["rand"] }
criterion = "0.5.1"
rand_chacha = "0.3"
rand = "0.8"
rand_core = "0.6"
rstest = "0.12"
Binary file added authdecode/authdecode_diagram.pdf
Binary file not shown.
Loading

1 comment on commit 2587d3a

@maceip
Copy link
Collaborator

@maceip maceip commented on 2587d3a Feb 25, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

absolute 🔥

Please sign in to comment.