Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: crypto blackbox tests #5614

Merged
merged 31 commits into from
Aug 26, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
1685a7b
add poseidon2_permutation smoke test draft
michaeljklein Jul 26, 2024
d2b25d0
using external poseidon2 permutation impl for test, make internal pos…
michaeljklein Jul 26, 2024
032ff31
convert test to property test, factor out test helper, use d=5
michaeljklein Jul 26, 2024
79bcd58
wip sha256 tests
michaeljklein Jul 29, 2024
aa04113
Merge branch 'master' into michaeljklein/crypto-blackbox-tests, add h…
michaeljklein Jul 31, 2024
dc42993
Merge branch 'master' into michaeljklein/crypto-blackbox-tests
michaeljklein Aug 5, 2024
56ac2fa
wip: possible keccak256 bug, add keccak operations, add injectivity h…
michaeljklein Aug 5, 2024
2fccc6d
wip debugging keccak256 test failure
michaeljklein Aug 5, 2024
ebeb12c
linting
michaeljklein Aug 6, 2024
674fe1c
implement sha256 compression tests, add min size to distinct input ge…
michaeljklein Aug 6, 2024
7545d34
linting, add issues to TODO's, cspell
michaeljklein Aug 6, 2024
cf1e642
Merge branch 'master' into michaeljklein/crypto-blackbox-tests
michaeljklein Aug 6, 2024
6cbd463
Merge branch 'master' into michaeljklein/crypto-blackbox-tests
michaeljklein Aug 6, 2024
5dc8adf
Merge branch 'master' into michaeljklein/crypto-blackbox-tests
michaeljklein Aug 7, 2024
b6e4bce
test aes128, suppor max bit size and use for keccak
michaeljklein Aug 8, 2024
ca702d3
remove AES and wip tests
michaeljklein Aug 8, 2024
c9b9096
Merge branch 'master' into michaeljklein/crypto-blackbox-tests
michaeljklein Aug 8, 2024
df5f60e
remove other AES test
michaeljklein Aug 8, 2024
e59c7e0
Merge branch 'michaeljklein/crypto-blackbox-tests' of github.com:noir…
michaeljklein Aug 8, 2024
df0b2a5
Merge branch 'master' into michaeljklein/crypto-blackbox-tests
michaeljklein Aug 9, 2024
ed1f5c8
renaming inputs from 'xs', restore should_panic annotation after debu…
michaeljklein Aug 9, 2024
2f50bb6
Merge branch 'master' into michaeljklein/crypto-blackbox-tests
michaeljklein Aug 21, 2024
1659461
Merge branch 'master' into michaeljklein/crypto-blackbox-tests
michaeljklein Aug 21, 2024
eb7aade
Merge branch 'master' into michaeljklein/crypto-blackbox-tests
michaeljklein Aug 22, 2024
8eb5945
add explicit num_bits parameter when solving array blackbox functions…
michaeljklein Aug 22, 2024
85f5cb8
Merge branch 'master' into michaeljklein/crypto-blackbox-tests
michaeljklein Aug 22, 2024
f733968
Merge branch 'master' into michaeljklein/crypto-blackbox-tests
michaeljklein Aug 23, 2024
9f0e054
responding to review comments
michaeljklein Aug 26, 2024
fe8f124
Merge branch 'master' into michaeljklein/crypto-blackbox-tests
michaeljklein Aug 26, 2024
0884b2f
Merge branch 'master' into michaeljklein/crypto-blackbox-tests
michaeljklein Aug 26, 2024
4697680
patch bigint tests with new parameter to constant_or_witness_to_funct…
michaeljklein Aug 26, 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
220 changes: 217 additions & 3 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 3 additions & 0 deletions acvm-repo/acvm/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -39,4 +39,7 @@ bls12_381 = [

[dev-dependencies]
ark-bls12-381 = { version = "^0.4.0", default-features = false, features = ["curve"] }
ark-bn254.workspace = true
bn254_blackbox_solver.workspace = true
proptest.workspace = true
zkhash = { version = "^0.2.0", default-features = false }
Loading
Loading