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

Remove byte hasher and sponge hash construct on top of Poseidon #68

Merged
merged 9 commits into from
Jan 13, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
8 changes: 6 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,14 @@
on: [ push, pull_request ]
name: Test
on:
push:
branches:
- main
pull_request:
jobs:
test:
strategy:
matrix:
go-version: [ 1.18.x, 1.19.x, 1.20.x ]
go-version: [ 1.20.x, 1.21.x, 1.22.x , 1.23.x ]
goarch: [ "amd64", "386" ]
runs-on: ubuntu-latest
steps:
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ Go implementation of some cryptographic primitives (that fit inside the SNARK fi
* Poseidon hash for BN254
* Poseidon hash for Goldilocks
* MIMC7
* Pedersen

## Contributing

Expand Down
87 changes: 0 additions & 87 deletions babyjub/babyjub_wrapper.go

This file was deleted.

69 changes: 0 additions & 69 deletions babyjub/babyjub_wrapper_test.go

This file was deleted.

10 changes: 5 additions & 5 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
module github.com/iden3/go-iden3-crypto/v2

go 1.18
go 1.20

require (
github.com/dchest/blake512 v1.0.0
github.com/leanovate/gopter v0.2.9
github.com/stretchr/testify v1.8.2
golang.org/x/crypto v0.7.0
golang.org/x/sys v0.6.0
github.com/leanovate/gopter v0.2.11
github.com/stretchr/testify v1.10.0
golang.org/x/crypto v0.32.0
golang.org/x/sys v0.29.0
)

require (
Expand Down
Loading
Loading