Skip to content

Commit

Permalink
sha3 v0.10.7 (#465)
Browse files Browse the repository at this point in the history
  • Loading branch information
tarcieri committed Apr 11, 2023
1 parent ca60ca9 commit 1fc6312
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

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

8 changes: 8 additions & 0 deletions sha3/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,14 @@ 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.10.7 (2023-04-11)
### Added
- `asm` feature ([#437])
- TurboSHAKE ([#458])

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

## 0.10.6 (2022-10-19)
### Fixed
- XOF reader type aliases ([#427])
Expand Down
8 changes: 6 additions & 2 deletions sha3/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
[package]
name = "sha3"
version = "0.10.6"
description = "SHA-3 (Keccak) hash function"
version = "0.10.7"
description = """
Pure Rust implementation of SHA-3, a family of Keccak-based hash functions
including the SHAKE family of eXtendable-Output Functions (XOFs), as well as
the accelerated variant TurboSHAKE
"""
authors = ["RustCrypto Developers"]
license = "MIT OR Apache-2.0"
readme = "README.md"
Expand Down
2 changes: 1 addition & 1 deletion sha3/LICENSE-MIT
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Copyright (c) 2006-2009 Graydon Hoare
Copyright (c) 2009-2013 Mozilla Foundation
Copyright (c) 2014 Sébastien Martini
Copyright (c) 2016-2017 Artyom Pavlov, Marek Kotewicz
Copyright (c) 2016-2023 Artyom Pavlov, Marek Kotewicz

Permission is hereby granted, free of charge, to any
person obtaining a copy of this software and associated
Expand Down
2 changes: 2 additions & 0 deletions sha3/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@
//! * `Keccak224`, `Keccak256`, `Keccak384`, `Keccak512` (NIST submission
//! without padding changes)
//!
//! Additionally supports `TurboSHAKE`.
//!
//! # Examples
//!
//! Output size of SHA3-256 is fixed, so its functionality is usually
Expand Down

0 comments on commit 1fc6312

Please sign in to comment.