Skip to content
This repository has been archived by the owner on Nov 4, 2024. It is now read-only.

Develop keccak #89

Merged
merged 38 commits into from
Mar 27, 2024
Merged
Show file tree
Hide file tree
Changes from 34 commits
Commits
Show all changes
38 commits
Select commit Hold shift + click to select a range
06c8764
Add examples: poseidon hash
10to4 May 9, 2023
33e619f
Modify: clippy check error
10to4 May 9, 2023
0510f6d
Modify: rustfmt error
10to4 May 9, 2023
5b9c9e6
Merge branch 'main' into develop-poseidon
10to4 Aug 1, 2023
54403bb
Adapt super circut
10to4 Aug 1, 2023
b1955df
Poseidon: write constants into lookup
10to4 Aug 5, 2023
7665f60
Merge branch 'privacy-scaling-explorations:main' into develop-poseidon
10to4 Aug 6, 2023
7333ecc
Merge branch 'develop-poseidon' of https://github.com/10to4/chiquito …
10to4 Aug 6, 2023
1f9b065
Poseidon: replace with MaxWidthCellManager
10to4 Aug 6, 2023
5b2e150
Fix clippy & fmt
10to4 Aug 6, 2023
f0e71a5
Keccak: add the keccak example
10to4 Aug 8, 2023
8d583c5
Keccak: code optimization
10to4 Aug 8, 2023
3fda4f3
Keccak: some modification:
10to4 Aug 21, 2023
f58f342
Fix clippy & fmt
10to4 Aug 22, 2023
050f0ef
Merge branch 'main' into develop-keccak
10to4 Aug 22, 2023
4d24bbc
Keccak: adapt to the latest code version
10to4 Aug 22, 2023
af62804
Resolve conflicts
10to4 Aug 22, 2023
a21657a
Fix clippy
10to4 Aug 22, 2023
b78ed55
Keccak: optimize the circuit
10to4 Sep 12, 2023
48d101a
Keccak: optimize the circuit
10to4 Sep 15, 2023
534f3d0
Keccak: reduce advice_column count
10to4 Sep 16, 2023
47c1786
Keccak: exporting the circuit structure with plaff
10to4 Oct 23, 2023
d138f6b
keccak: reduce circuit rows
10to4 Nov 25, 2023
857e3ae
Merge branch 'privacy-scaling-explorations:main' into develop-keccak
10to4 Nov 26, 2023
7c65428
Merge branch 'develop-keccak' of https://github.com/10to4/chiquito in…
10to4 Nov 26, 2023
548681a
keccak: change to LogNSelectorBuilder & adopt new commit
10to4 Nov 26, 2023
dd4e54d
Fix clippy & fmt
10to4 Nov 26, 2023
a6c01d7
Fix fmt
10to4 Nov 26, 2023
1ef683e
Keccak: clean code
10to4 Nov 29, 2023
348f9bd
Keccak: improve the circuit
10to4 Dec 31, 2023
f7583c0
Keccak: improve the circuit
10to4 Dec 31, 2023
6a0639a
Keccak: optimize circuit code
10to4 Feb 23, 2024
699c350
Merge branch 'main' into develop-keccak
10to4 Feb 23, 2024
317c3a6
Keccak: merge the main branch
10to4 Feb 23, 2024
a13ec27
Keccak: remove useless code
10to4 Mar 27, 2024
659c32b
Merge branch 'main' into develop-keccak
leolara Mar 27, 2024
776ce55
Keccak: minor
10to4 Mar 27, 2024
66548fc
Merge branch 'develop-keccak' of https://github.com/10to4/chiquito in…
10to4 Mar 27, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ num-bigint = { version = "0.4", features = ["rand"] }
uuid = { version = "1.4.0", features = ["v1", "rng"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
ff = "0.13.0"
Copy link
Collaborator

Choose a reason for hiding this comment

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

@10to4 why is this package required, it seems it is not used

Copy link
Contributor Author

Choose a reason for hiding this comment

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

Yes, I think this should be legacy useless code.


[dev-dependencies]
rand_chacha = "0.3"
Expand Down
Loading
Loading