Skip to content

Commit 1fc6312

Browse files
authored
sha3 v0.10.7 (#465)
1 parent ca60ca9 commit 1fc6312

File tree

5 files changed

+18
-4
lines changed

5 files changed

+18
-4
lines changed

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

sha3/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,14 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## 0.10.7 (2023-04-11)
9+
### Added
10+
- `asm` feature ([#437])
11+
- TurboSHAKE ([#458])
12+
13+
[#437]: https://github.com/RustCrypto/hashes/pull/437
14+
[#458]: https://github.com/RustCrypto/hashes/pull/458
15+
816
## 0.10.6 (2022-10-19)
917
### Fixed
1018
- XOF reader type aliases ([#427])

sha3/Cargo.toml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,11 @@
11
[package]
22
name = "sha3"
3-
version = "0.10.6"
4-
description = "SHA-3 (Keccak) hash function"
3+
version = "0.10.7"
4+
description = """
5+
Pure Rust implementation of SHA-3, a family of Keccak-based hash functions
6+
including the SHAKE family of eXtendable-Output Functions (XOFs), as well as
7+
the accelerated variant TurboSHAKE
8+
"""
59
authors = ["RustCrypto Developers"]
610
license = "MIT OR Apache-2.0"
711
readme = "README.md"

sha3/LICENSE-MIT

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Copyright (c) 2006-2009 Graydon Hoare
22
Copyright (c) 2009-2013 Mozilla Foundation
33
Copyright (c) 2014 Sébastien Martini
4-
Copyright (c) 2016-2017 Artyom Pavlov, Marek Kotewicz
4+
Copyright (c) 2016-2023 Artyom Pavlov, Marek Kotewicz
55

66
Permission is hereby granted, free of charge, to any
77
person obtaining a copy of this software and associated

sha3/src/lib.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@
1111
//! * `Keccak224`, `Keccak256`, `Keccak384`, `Keccak512` (NIST submission
1212
//! without padding changes)
1313
//!
14+
//! Additionally supports `TurboSHAKE`.
15+
//!
1416
//! # Examples
1517
//!
1618
//! Output size of SHA3-256 is fixed, so its functionality is usually

0 commit comments

Comments
 (0)