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

Merging the develop branch into the main branch, v1.4.0 #20

Open
wants to merge 9 commits into
base: master
Choose a base branch
from
6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "libzeropool-zkbob"
version = "1.3.0"
version = "1.4.0"
authors = ["Igor Gulamov <igor.gulamov@gmail.com>"]
homepage = "https://github.com/zkbob/libzeropool"
repository = "https://github.com/zkbob/libzeropool"
Expand Down Expand Up @@ -31,7 +31,7 @@ convert_case = "0.4.0"
git = "https://github.com/zkBob/fawkes-crypto"
branch = "master"
package = "fawkes-crypto-zkbob"
version = "4.6.0"
version = "4.7.0"
features = ["rand_support"]

[dependencies.fawkes-crypto-keccak256]
Expand All @@ -55,5 +55,5 @@ test-case = "2.2.2"
git = "https://github.com/zkBob/fawkes-crypto"
branch = "master"
package = "fawkes-crypto-zkbob"
version = "4.6.0"
version = "4.7.0"
features = ["rand_support", "backend_bellman_groth16"]
1 change: 1 addition & 0 deletions src/constants/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ pub const POOLID_SIZE_BITS: usize = 24;
pub const DELEGATED_DEPOSITS_NUM:usize = 16;

pub const POLY_1305_TAG_SIZE: usize = 16;
pub const XCHACHA20_POLY1305_NONCE_SIZE: usize = 24;
pub const U256_SIZE: usize = 32;

pub fn num_size_bits<Fp:PrimeFieldParams+Sized>() -> usize {
Expand Down
Loading