Skip to content

Commit 4eebb55

Browse files
committed
block-buffer and block-padding improvements
1 parent 08830b9 commit 4eebb55

File tree

7 files changed

+473
-397
lines changed

7 files changed

+473
-397
lines changed

Cargo.lock

Lines changed: 5 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

block-buffer/CHANGELOG.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
# Changelog
2+
All notable changes to this project will be documented in this file.
3+
4+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
5+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
6+
7+
## 0.10.0 (2020-12-08)
8+
### Changed
9+
- Rename `input_block(s)` methods to `digest_block(s)`. ([#113])
10+
- Upgrade the `block-padding` dependency to v0.3. ([#113])
11+
12+
### Added
13+
- The `xor_data` method. ([#113])
14+
15+
### Removed
16+
- The `input_lazy` method. ([#113])
17+
18+
[#113]: https://github.com/RustCrypto/utils/pull/113

block-buffer/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "block-buffer"
3-
version = "0.9.0"
3+
version = "0.10.0"
44
authors = ["RustCrypto Developers"]
55
license = "MIT OR Apache-2.0"
66
description = "Fixed size buffer for block processing of data"
@@ -11,5 +11,5 @@ categories = ["cryptography", "no-std"]
1111
edition = "2018"
1212

1313
[dependencies]
14-
block-padding = { version = "0.2.0", path = "../block-padding", optional = true }
14+
block-padding = { version = "0.3.0", path = "../block-padding", optional = true }
1515
generic-array = "0.14"

0 commit comments

Comments
 (0)