Skip to content

Commit

Permalink
enable zeroize for dalek crates
Browse files Browse the repository at this point in the history
Signed-off-by: Andrew Whitehead <[email protected]>
  • Loading branch information
andrewwhitehead committed Sep 20, 2023
1 parent ee4b2fb commit 7336823
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion indy-data-types/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,9 @@ vendored = ["anoncreds-clsignatures?/openssl_vendored"]
anoncreds-clsignatures = { version = "0.2", optional = true }
bs58 = "0.5"
curve25519-dalek = { version = "4.1", default-features = false, optional = true }
ed25519-dalek = { version = "2.0", default-features = false, optional = true }
ed25519-dalek = { version = "2.0", default-features = false, features = [
"zeroize",
], optional = true }
hex = { version = "0.4", optional = true }
once_cell = "1"
rand = { version = "0.8", optional = true }
Expand All @@ -41,6 +43,7 @@ sha2 = { version = "0.10", optional = true }
thiserror = "1"
x25519-dalek = { version = "2.0", default-features = false, optional = true, features = [
"static_secrets",
"zeroize",
] }
zeroize = { version = "1", features = ["zeroize_derive"] }

Expand Down

0 comments on commit 7336823

Please sign in to comment.