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
24 changes: 12 additions & 12 deletions Cargo.lock

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

40 changes: 1 addition & 39 deletions ascon-hash256/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,42 +2,4 @@
All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## 0.3.0 (UNRELEASED)
### Changed
- Edition changed to 2024 and MSRV bumped to 1.85 ([#652])
- Relax MSRV policy and allow MSRV bumps in patch releases
- Update to `digest` v0.11
- Replace type aliases with newtypes ([#678])
- Adopt to changes from NIST draft
- Remove `AsconAHash` and `AsconAXof`
- Rename `AsonHash` to `AsconHAsh256`
- Rename `AsconXof` to `AsconXof128`
- Implementation of the `SerializableState` trait ([#716])

[#652]: https://github.com/RustCrypto/hashes/pull/652
[#678]: https://github.com/RustCrypto/hashes/pull/678
[#716]: https://github.com/RustCrypto/hashes/pull/716

## 0.2.0 (2023-03-21)
### Changed
- Drop MSRV back to 1.56 and keep it in sync with `ascon` ([#459])
- Relicense as Apache-2.0 or MIT ([#459])
- Renamed public types to follow UpperCamelCase naming convention ([#459])
- `AsconXOF` -> `AsconXof`
- `AsconXOFReader` -> `AsconXofReader`
- `AsconAXOF` -> `AsconAXof`
- `ASconAXOFReader`-> `AsconAXofReader`

[#459]: https://github.com/RustCrypto/hashes/pull/459

## 0.1.1 (2023-03-17)

* Use `aead` instead of `aead-core`.
* Bump MSRV to 1.60.
* Add benchmarks.

## 0.1 (2022-06-03)

* Initial release.
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
2 changes: 1 addition & 1 deletion 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-pre"
version = "0.5.0-rc.0"
description = "Implementation of Ascon-Hash256 and Ascon-XOF256"
authors = [
"Sebastian Ramacher <sebastian.ramacher@ait.ac.at>",
Expand Down
6 changes: 3 additions & 3 deletions ascon-hash256/README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# RustCrypto: Ascon
# RustCrypto: Ascon-Hash256 and Ascon-XOF128

[![crate][crate-image]][crate-link]
[![Docs][docs-image]][docs-link]
Expand All @@ -7,8 +7,8 @@
![Rust Version][rustc-image]
[![Project Chat][chat-image]][chat-link]

Pure Rust implementation of the lightweight cryptographic hash function [AsconHash256][1] and the
extendable output functions (XOF) AsconXOF256.
Pure Rust implementation of the lightweight cryptographic hash function [Ascon-Hash256][1] and the
extendable output functions (XOF) Ascon-XOF128.

## Security Notes

Expand Down
4 changes: 2 additions & 2 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-pre"
version = "0.2.0-rc.0"
description = "FSB hash function"
authors = ["RustCrypto Developers"]
license = "MIT OR Apache-2.0"
Expand All @@ -14,7 +14,7 @@ categories = ["cryptography", "no-std"]

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

[dev-dependencies]
digest = { version = "0.11.0-rc.5", features = ["dev"] }
Expand Down
2 changes: 1 addition & 1 deletion gost94/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "gost94"
version = "0.11.0-pre"
version = "0.11.0-rc.0"
description = "GOST R 34.11-94 hash function"
authors = ["RustCrypto Developers"]
license = "MIT OR Apache-2.0"
Expand Down
2 changes: 1 addition & 1 deletion groestl/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "groestl"
version = "0.11.0-pre"
version = "0.11.0-rc.0"
description = "Grøstl hash function"
authors = ["RustCrypto Developers"]
license = "MIT OR Apache-2.0"
Expand Down
2 changes: 1 addition & 1 deletion jh/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "jh"
version = "0.2.0-pre"
version = "0.2.0-rc.0"
description = "Pure Rust implementation of the JH cryptographic hash function"
authors = ["RustCrypto Developers"]
license = "MIT OR Apache-2.0"
Expand Down
4 changes: 2 additions & 2 deletions k12/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "k12"
version = "0.4.0-pre"
version = "0.4.0-rc.0"
description = "Pure Rust implementation of the KangarooTwelve hash function"
authors = ["RustCrypto Developers", "Diggory Hardy <github1@dhardy.name>"]
license = "Apache-2.0 OR MIT"
Expand All @@ -14,7 +14,7 @@ categories = ["cryptography", "no-std"]

[dependencies]
digest = "0.11.0-rc.5"
sha3 = { version = "0.11.0-rc.1", default-features = false }
sha3 = { version = "0.11.0-rc.3", default-features = false }

[dev-dependencies]
digest = { version = "0.11.0-rc.5", features = ["alloc", "dev"] }
Expand Down
2 changes: 1 addition & 1 deletion md2/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "md2"
version = "0.11.0-pre"
version = "0.11.0-rc.0"
license = "MIT OR Apache-2.0"
authors = ["RustCrypto Developers"]
description = "MD2 hash function"
Expand Down
2 changes: 1 addition & 1 deletion md4/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "md4"
version = "0.11.0-pre"
version = "0.11.0-rc.0"
description = "MD4 hash function"
authors = ["RustCrypto Developers"]
license = "MIT OR Apache-2.0"
Expand Down
4 changes: 2 additions & 2 deletions sha1-checked/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "sha1-checked"
version = "0.11.0-pre"
version = "0.11.0-rc.0"
description = "SHA-1 hash function with collision detection"
authors = ["RustCrypto Developers"]
license = "MIT OR Apache-2.0"
Expand All @@ -19,7 +19,7 @@ exclude = [

[dependencies]
digest = "0.11.0-rc.5"
sha1 = { version = "0.11.0-rc.2", default-features = false }
sha1 = { version = "0.11.0-rc.3", default-features = false }
zeroize = { version = "1.8", default-features = false, optional = true }

[dev-dependencies]
Expand Down
2 changes: 1 addition & 1 deletion shabal/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "shabal"
version = "0.5.0-pre"
version = "0.5.0-rc.0"
description = "Shabal hash functions"
authors = ["RustCrypto Developers"]
license = "MIT OR Apache-2.0"
Expand Down
2 changes: 1 addition & 1 deletion skein/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "skein"
version = "0.2.0-pre"
version = "0.2.0-rc.0"
description = "Skein hash functions"
authors = ["RustCrypto Developers"]
license = "MIT OR Apache-2.0"
Expand Down
2 changes: 1 addition & 1 deletion tiger/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tiger"
version = "0.3.0-pre"
version = "0.3.0-rc.0"
description = "Tiger hash function"
authors = ["RustCrypto Developers"]
license = "MIT OR Apache-2.0"
Expand Down
Loading