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

Bump crypto.rs version #96

Merged
merged 1 commit into from
Dec 22, 2020
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
2 changes: 1 addition & 1 deletion client/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ path = "../runtime"

[dependencies.iota-crypto]
git = "https://github.com/iotaledger/crypto.rs"
rev = "46128fc8ea08e251ab2506a3f591295a9673c7fc"
rev = "9259a0617ca3b72e2bb2f63d5b7197247f85061c"
features = [ "random", "ed25519", "sha", "hmac", "bip39-en", "blake2b" ]

[dev-dependencies]
Expand Down
2 changes: 1 addition & 1 deletion client/src/actors/internal.rs
Original file line number Diff line number Diff line change
Expand Up @@ -431,7 +431,7 @@ impl Receive<InternalMsg> for InternalActor<Provider> {

let mnemonic = crypto::bip39::wordlist::encode(
&entropy,
crypto::bip39::wordlist::ENGLISH, // TODO: make this user configurable
&crypto::bip39::wordlist::ENGLISH, // TODO: make this user configurable
)
.expect(line_error!());

Expand Down
2 changes: 1 addition & 1 deletion engine/snapshot/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ hex = "0.4.2"

[dependencies.iota-crypto]
git = "https://github.com/iotaledger/crypto.rs"
rev = "bc35d38561efcf20a50aeb0f0b08028b4b4fda46"
rev = "9259a0617ca3b72e2bb2f63d5b7197247f85061c"

# TODO: remove hmac and sha when a proper kdf is chosen
features = [ "random", "chacha", "hmac", "sha" ]
Expand Down