Skip to content
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
5 changes: 3 additions & 2 deletions .typos.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,6 @@ extend-exclude = [
]

[default.extend-words]
"GOST" = "GOST"

consts = "consts"
cpy = "cpy"
GOST = "GOST"
54 changes: 27 additions & 27 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions ascon-hash256/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ascon-hash256"
version = "0.5.0-rc.1"
version = "0.5.0-rc.2"
description = "Implementation of Ascon-Hash256 and Ascon-XOF256"
authors = [
"Sebastian Ramacher <sebastian.ramacher@ait.ac.at>",
Expand All @@ -16,7 +16,7 @@ keywords = ["hash", "ascon"]
categories = ["cryptography", "no-std"]

[dependencies]
digest = "0.11.0-rc.9"
digest = "0.11.0-rc.11"
ascon = { version = "0.5.0-rc.0", default-features = false }

[dev-dependencies]
Expand Down
2 changes: 1 addition & 1 deletion ascon-hash256/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ use digest::{
AlgorithmName, Block, BlockSizeUser, Buffer, BufferKindUser, Eager, ExtendableOutputCore,
FixedOutputCore, UpdateCore, XofReaderCore,
},
common::hazmat::{DeserializeStateError, SerializableState, SerializedState},
consts::{U8, U16, U32, U40},
crypto_common::hazmat::{DeserializeStateError, SerializableState, SerializedState},
};

/// Produce mask for padding.
Expand Down
6 changes: 3 additions & 3 deletions bash-hash/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "bash-hash"
version = "0.1.0-rc.0"
version = "0.1.0-rc.1"
description = "bash hash function (STB 34.101.77-2020)"
authors = ["RustCrypto Developers"]
license = "MIT OR Apache-2.0"
Expand All @@ -13,11 +13,11 @@ keywords = ["belt", "stb", "hash", "digest"]
categories = ["cryptography", "no-std"]

[dependencies]
digest = "0.11.0-rc.9"
digest = "0.11.0-rc.11"
bash-f = "0.1"

[dev-dependencies]
digest = { version = "0.11.0-rc.9", features = ["dev"] }
digest = { version = "0.11.0-rc.11", features = ["dev"] }
hex-literal = "1"
base16ct = { version = "1", features = ["alloc"] }

Expand Down
2 changes: 1 addition & 1 deletion bash-hash/src/block_api.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ use digest::{
AlgorithmName, Block, BlockSizeUser, Buffer, BufferKindUser, Eager, FixedOutputCore,
OutputSizeUser, Reset, UpdateCore,
},
crypto_common::hazmat::{DeserializeStateError, SerializableState, SerializedState},
common::hazmat::{DeserializeStateError, SerializableState, SerializedState},
typenum::U192,
};

Expand Down
2 changes: 1 addition & 1 deletion bash-hash/src/serialize.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ use core::ops::Add;
use digest::{
array::ArraySize,
block_buffer::BlockBuffer,
crypto_common::hazmat::{DeserializeStateError, SerializableState, SerializedState},
common::hazmat::{DeserializeStateError, SerializableState, SerializedState},
typenum::{Sum, U0, U192},
};

Expand Down
2 changes: 1 addition & 1 deletion bash-hash/src/variants.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
use digest::{array::ArraySize, crypto_common::BlockSizes, typenum};
use digest::{array::ArraySize, common::BlockSizes, typenum};

/// Sealed trait to prevent external implementations.
pub trait Sealed {}
Expand Down
6 changes: 3 additions & 3 deletions belt-hash/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "belt-hash"
version = "0.2.0-rc.4"
version = "0.2.0-rc.5"
description = "BelT hash function (STB 34.101.31-2020)"
authors = ["RustCrypto Developers"]
license = "MIT OR Apache-2.0"
Expand All @@ -13,11 +13,11 @@ keywords = ["belt", "stb", "hash", "digest"]
categories = ["cryptography", "no-std"]

[dependencies]
digest = "0.11.0-rc.9"
digest = "0.11.0-rc.11"
belt-block = { version = "0.1.1", default-features = false }

[dev-dependencies]
digest = { version = "0.11.0-rc.9", features = ["dev"] }
digest = { version = "0.11.0-rc.11", features = ["dev"] }
hex-literal = "1"
base16ct = { version = "1", features = ["alloc"] }

Expand Down
2 changes: 1 addition & 1 deletion belt-hash/src/block_api.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ use digest::{
AlgorithmName, Block, BlockSizeUser, Buffer, BufferKindUser, Eager, FixedOutputCore,
OutputSizeUser, Reset, UpdateCore,
},
crypto_common::hazmat::{DeserializeStateError, SerializableState, SerializedState},
common::hazmat::{DeserializeStateError, SerializableState, SerializedState},
typenum::{U32, U64, Unsigned},
};

Expand Down
6 changes: 3 additions & 3 deletions blake2/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "blake2"
version = "0.11.0-rc.4"
version = "0.11.0-rc.5"
description = "BLAKE2 hash functions"
authors = ["RustCrypto Developers"]
license = "MIT OR Apache-2.0"
Expand All @@ -13,10 +13,10 @@ keywords = ["blake2", "hash", "digest"]
categories = ["cryptography", "no-std"]

[dependencies]
digest = { version = "0.11.0-rc.9", features = ["mac"] }
digest = { version = "0.11.0-rc.11", features = ["mac"] }

[dev-dependencies]
digest = { version = "0.11.0-rc.9", features = ["dev"] }
digest = { version = "0.11.0-rc.11", features = ["dev"] }
hex-literal = "1"
base16ct = { version = "1", features = ["alloc"] }

Expand Down
2 changes: 1 addition & 1 deletion blake2/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ use digest::{
UpdateCore, VariableOutputCore, VariableOutputCoreCustomized,
},
block_buffer::{Lazy, LazyBuffer},
common::{InvalidLength, Key, KeyInit, KeySizeUser},
consts::{U4, U16, U32, U64, U128},
crypto_common::{InvalidLength, Key, KeyInit, KeySizeUser},
typenum::{IsLessOrEqual, True, Unsigned},
};
#[cfg(feature = "reset")]
Expand Down
6 changes: 3 additions & 3 deletions fsb/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "fsb"
version = "0.2.0-rc.1"
version = "0.2.0-rc.2"
description = "FSB hash function"
authors = ["RustCrypto Developers"]
license = "MIT OR Apache-2.0"
Expand All @@ -13,11 +13,11 @@ keywords = ["fsb", "hash", "digest"]
categories = ["cryptography", "no-std"]

[dependencies]
digest = "0.11.0-rc.9"
digest = "0.11.0-rc.11"
whirlpool = { version = "0.11.0-rc.3", default-features = false }

[dev-dependencies]
digest = { version = "0.11.0-rc.9", features = ["dev"] }
digest = { version = "0.11.0-rc.11", features = ["dev"] }
hex-literal = "1"
base16ct = { version = "1", features = ["alloc"] }

Expand Down
2 changes: 1 addition & 1 deletion fsb/src/block_api.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ use digest::{
AlgorithmName, Block, BlockSizeUser, Buffer, BufferKindUser, Eager, FixedOutputCore,
OutputSizeUser, Reset, UpdateCore,
},
crypto_common::hazmat::{DeserializeStateError, SerializableState, SerializedState},
common::hazmat::{DeserializeStateError, SerializableState, SerializedState},
typenum::{Sum, U8, Unsigned},
};

Expand Down
Loading
Loading