Skip to content

Commit

Permalink
fix: relax zeroize (#20)
Browse files Browse the repository at this point in the history
* Point to tari-project/curve25519-dalek

* licence header
  • Loading branch information
hansieodendaal committed Nov 24, 2022
1 parent 6c221ff commit 4e041dd
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Cargo.toml
Expand Up @@ -9,7 +9,7 @@ description = "A smaller faster implementation of Bulletproofs"
[dependencies]
blake2 = "0.9.1"
byteorder = { version = "1", default-features = false }
curve25519-dalek = { package = "curve25519-dalek", version = "3.2.1", default-features = false, features = ["serde", "alloc"] }
curve25519-dalek = {git = "https://github.com/tari-project/curve25519-dalek", tag = "v4.0.1", default-features = false, features = ["serde", "alloc"] }
derive_more = "0.99.17"
derivative = "2.2.0"
digest = { version = "0.9.0", default-features = false }
Expand All @@ -19,7 +19,7 @@ rand = "0.7"
serde = "1.0.89"
sha3 = { version = "0.9.1", default-features = false }
thiserror = { version = "1" }
zeroize = "1.3.0"
zeroize = "1"
rand_core = { version = "0.5", default-features = false }

[dev-dependencies]
Expand Down
3 changes: 3 additions & 0 deletions src/utils/rng.rs
@@ -1,3 +1,6 @@
// Copyright 2022 The Tari Project
// SPDX-License-Identifier: BSD-3-Clause

use curve25519_dalek::scalar::Scalar;

pub trait Rng {
Expand Down

0 comments on commit 4e041dd

Please sign in to comment.