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

Added zk cryptography #14

Merged
merged 56 commits into from
Jan 7, 2025
Merged
Show file tree
Hide file tree
Changes from 42 commits
Commits
Show all changes
56 commits
Select commit Hold shift + click to select a range
8251304
Add hash functions
1KitCat1 Dec 4, 2024
8f10560
Add zk cryptography
1KitCat1 Dec 4, 2024
ddbf7d2
fix deps
Arvolear Dec 4, 2024
3c14b28
fix test runner
Arvolear Dec 5, 2024
6ff41db
linted and reorganised hash functions;
aritkulova Dec 5, 2024
defd279
linted wasm-test
aritkulova Dec 5, 2024
fd32444
updated hardhat-zkit package version
aritkulova Dec 5, 2024
909a57a
linted zk cryptography circom files
aritkulova Dec 6, 2024
5cd0290
cleaned up wasm-test js files
aritkulova Dec 6, 2024
a84910a
renamed functions to camel case
aritkulova Dec 6, 2024
a2f0d6e
removed double spaces;
aritkulova Dec 9, 2024
68d3b70
refactored comments, corrected typos
aritkulova Dec 10, 2024
fc56ced
linting
aritkulova Dec 23, 2024
1fbcd66
updated dependencies
aritkulova Dec 24, 2024
0225ae5
rewrote tests from wasm to hardhat: bigInt folder
aritkulova Dec 24, 2024
348c7c2
rewrote tests from wasm to hardhat: bitify folder
aritkulova Dec 24, 2024
3a64ada
rewrote tests from wasm to hardhat: hasher folder
aritkulova Dec 24, 2024
d9da869
rewrote tests from wasm to hardhat: int folder
aritkulova Dec 24, 2024
a875029
transfered common functions to helperFunctions file
aritkulova Dec 24, 2024
df6886b
fixed typos:
aritkulova Dec 25, 2024
083d73d
allowed UnlimitedContractSize for verifiers contracts
aritkulova Dec 26, 2024
c463198
updated hardhat-zkit version
aritkulova Dec 26, 2024
95a3711
rewrote tests from wasm to hardhat: matrix folder
aritkulova Dec 26, 2024
68f48a3
fixed typos
aritkulova Dec 27, 2024
451bcc5
switched to same order of inputs in sig folder
aritkulova Dec 27, 2024
05dfd45
rewrote tests from wasm to hardhat: signature folder
aritkulova Dec 27, 2024
7bd423d
rewrote tests from wasm to hardhat: ec folder
aritkulova Dec 28, 2024
74b7e68
fixed typos
aritkulova Dec 28, 2024
23d8373
trying to fix compile in ci
aritkulova Dec 28, 2024
6203019
trying to adjust ram in case its github limit
aritkulova Dec 28, 2024
3a08a1a
refactored possibly undefined vars in tests
aritkulova Dec 28, 2024
bb76afe
checking a pipeline without 4 biggest circuits
aritkulova Dec 28, 2024
14129a5
fixed tests for brainloop:
aritkulova Dec 29, 2024
a49b99a
refactored assertion checks in tests
aritkulova Dec 30, 2024
538d129
updated zkit hardhat version
aritkulova Dec 30, 2024
6e63ff1
let -> const in tests
aritkulova Dec 30, 2024
d4c262d
deleted wasm-test folder
aritkulova Dec 30, 2024
d866a18
trying to fix ci
aritkulova Dec 30, 2024
74535ab
trying to fix ci command
aritkulova Dec 30, 2024
6a6c42e
disabled ci checks
aritkulova Dec 30, 2024
6494dc7
consistency in tests
aritkulova Jan 2, 2025
dbebb23
added missing BigSubNonEqual test
aritkulova Jan 2, 2025
823a4f4
cleaned up
aritkulova Jan 3, 2025
eaea801
mock directory renamed to main;
aritkulova Jan 3, 2025
0c388d7
moved mgf1.circom to utils
aritkulova Jan 3, 2025
cbc3eee
fixed typo in Pippenger
aritkulova Jan 3, 2025
4d65595
fixed paths (renamed mock to main)
aritkulova Jan 6, 2025
0cd68ad
switched to local circuits instead of circomlib's
aritkulova Jan 6, 2025
6528fa8
renamed utils to mask
aritkulova Jan 6, 2025
1430160
CommitmentVerifier -> Commitment
aritkulova Jan 6, 2025
200a0a7
updated dependencies
aritkulova Jan 6, 2025
3e416e4
updated tests
aritkulova Jan 6, 2025
61be0ff
fixed package-lock
aritkulova Jan 6, 2025
30e7c98
linting
aritkulova Jan 6, 2025
844920a
removed unnecessary dependencies
aritkulova Jan 6, 2025
589a5e9
returned chai deps
aritkulova Jan 7, 2025
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
3 changes: 3 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@ insert_final_newline = true
[*.ts]
indent_size = 2
max_line_length = 120
[*.js]
indent_size = 2
max_line_length = 120
[*.sol]
indent_size = 4
max_line_length = 99
4 changes: 0 additions & 4 deletions .github/workflows/checks.yml
aritkulova marked this conversation as resolved.
Show resolved Hide resolved
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,3 @@ jobs:
uses: actions/checkout@v3
- name: Setup
uses: ./.github/actions/setup
- name: Compile
run: npm run compile
- name: Run tests
run: npm run test
Loading
Loading