Skip to content

Commit

Permalink
Updated Deps
Browse files Browse the repository at this point in the history
  • Loading branch information
AtropineTears committed Mar 4, 2021
1 parent 6119ed1 commit 3ccc8ae
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 2 deletions.
11 changes: 10 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,15 @@ travis-ci = { repository = "https://github.com/0xAtropine/Winternitz-OTS", branc
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
# Data Format
hex = "0.4.2"
getrandom = "0.1.14"

# Randomness
# Was 0.1.4
getrandom = "0.2.2"

# Crypto
blake2-rfc = "0.2.18"

# Serialization
serde = { version = "1.0", features = ["derive"] }
2 changes: 1 addition & 1 deletion src/wots.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ use getrandom;

/// # W-OTS Keypair
/// This struct contains the W-OTS Keypair, including:
/// - w: The Wintertnitz Parameter, as a usize
/// - w: The Wintertnitz Parameter, as a usize. It should be 4 or 16.
/// - n: The Digest Length in Bytes, as a usize
/// - pk: The Public Key, as a Vector of Strings
/// - sk: The Private Key, as a Vector of Strings
Expand Down

0 comments on commit 3ccc8ae

Please sign in to comment.