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

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

5 changes: 4 additions & 1 deletion aes/aesni/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Changed
- Bump `block-cipher` dependency to v0.7 ([#86], [#122])
- Update to Rust 2018 edition ([#86])
- Use `mem::zeroed` instead of `mem::uninitialized` on XMM registers ([#109], [#110])

[#121]: https://github.com/RustCrypto/block-ciphers/pull/122
[#122]: https://github.com/RustCrypto/block-ciphers/pull/122
[#121]: https://github.com/RustCrypto/block-ciphers/pull/121
[#110]: https://github.com/RustCrypto/block-ciphers/pull/110
[#109]: https://github.com/RustCrypto/block-ciphers/pull/109
[#86]: https://github.com/RustCrypto/block-ciphers/pull/86

## 0.6.0 (2018-11-01)
Expand Down
7 changes: 7 additions & 0 deletions blowfish/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,13 @@ 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.5.0 (2020-06-08)
### Changed
- Bump `block-cipher` dependency to v0.7 ([#88])
- Upgrade to Rust 2018 edition ([#88])

[#88]: https://github.com/RustCrypto/block-ciphers/pull/88

## 0.4.0 (2018-12-23)

## 0.3.1 (2018-12-17)
Expand Down
2 changes: 1 addition & 1 deletion blowfish/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "blowfish"
version = "0.4.0"
version = "0.5.0"
description = "Blowfish block cipher"
authors = ["RustCrypto Developers"]
license = "MIT/Apache-2.0"
Expand Down
8 changes: 8 additions & 0 deletions cast5/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,12 @@ 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.7.0 (2020-06-08)
### Changed
- Bump `block-cipher` dependency to v0.7 ([#89])
- Upgrade to Rust 2018 edition ([#89])

[#89]: https://github.com/RustCrypto/block-ciphers/pull/89

## 0.6.0 (2019-03-11)
- Initial release
2 changes: 1 addition & 1 deletion cast5/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cast5"
version = "0.7.0-pre"
version = "0.7.0"
description = "CAST5 block cipher"
authors = ["RustCrypto Developers"]
license = "MIT OR Apache-2.0"
Expand Down
7 changes: 7 additions & 0 deletions des/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,13 @@ 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.4.0 (2020-06-08)
### Changed
- Bump `block-cipher` dependency to v0.7 ([#90])
- Upgrade to Rust 2018 edition ([#90])

[#90]: https://github.com/RustCrypto/block-ciphers/pull/90

## 0.3.0 (2018-12-23)

## 0.2.0 (2018-11-14)
Expand Down
2 changes: 1 addition & 1 deletion des/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "des"
version = "0.4.0-pre"
version = "0.4.0"
description = "DES and Triple DES (3DES, TDES) block ciphers implementation"
authors = ["RustCrypto Developers"]
license = "MIT/Apache-2.0"
Expand Down
8 changes: 7 additions & 1 deletion idea/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ 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.0.1 (2020-05-23)
## 0.1.0 (2020-06-08)
### Changed
- Bump `block-cipher` dependency to v0.7 ([#91])
- Upgrade to Rust 2018 edition ([#91])

[#91]: https://github.com/RustCrypto/block-ciphers/pull/91

## 0.0.1 (2020-05-23)
- Initial release
2 changes: 1 addition & 1 deletion idea/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "idea"
version = "0.1.0-pre"
version = "0.1.0"
description = "IDEA block cipher"
authors = ["RustCrypto Developers"]
license = "Apache-2.0 AND MIT"
Expand Down
11 changes: 11 additions & 0 deletions kuznyechik/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,17 @@ 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.4.0-pre UNRELEASED
### Changed
- Bump `block-cipher` dependency to v0.7 ([#92])
- Upgrade to Rust 2018 edition ([#92])

### Fixed
- Byte order ([#118])

[#118]: https://github.com/RustCrypto/block-ciphers/pull/118
[#92]: https://github.com/RustCrypto/block-ciphers/pull/92

## 0.3.0 (2018-12-23)

## 0.2.0 (2017-11-26)
Expand Down
11 changes: 11 additions & 0 deletions magma/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,17 @@ 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.4.0-pre UNRELEASED
### Changed
- Bump `block-cipher` dependency to v0.7 ([#93])
- Upgrade to Rust 2018 edition ([#93])

### Fixed
- Byte order ([#118])

[#118]: https://github.com/RustCrypto/block-ciphers/pull/118
[#93]: https://github.com/RustCrypto/block-ciphers/pull/93

## 0.3.0 (2018-12-23)

## 0.2.0 (2017-11-26)
Expand Down
7 changes: 7 additions & 0 deletions rc2/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,13 @@ 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.4.0 (2020-06-08)
### Changed
- Bump `block-cipher` dependency to v0.7 ([#94])
- Upgrade to Rust 2018 edition ([#94])

[#94]: https://github.com/RustCrypto/block-ciphers/pull/94

## 0.3.0 (2018-12-23)

## 0.2.0 (2017-11-26)
Expand Down
2 changes: 1 addition & 1 deletion rc2/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rc2"
version = "0.4.0-pre"
version = "0.4.0"
description = "RC2 block cipher"
authors = ["RustCrypto Developers"]
license = "MIT/Apache-2.0"
Expand Down
12 changes: 11 additions & 1 deletion serpent/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,16 @@ 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.0.1 (2020-05-23)
## 0.1.0 (2020-06-08)
### Added
- Benchmarks ([#105])

### Changed
- Bump `block-cipher` dependency to v0.7 ([#95])
- Upgrade to Rust 2018 edition ([#95])

[#105]: https://github.com/RustCrypto/block-ciphers/pull/105
[#95]: https://github.com/RustCrypto/block-ciphers/pull/95

## 0.0.1 (2020-05-23)
- Initial release
2 changes: 1 addition & 1 deletion serpent/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "serpent"
version = "0.1.0-pre"
version = "0.1.0"
description = "Serpent block cipher: candidate for the Advanced Encryption Standard (AES)"
authors = ["Blocs <jonathan@cryptoblocs.fr>"]
license = "Apache-2.0 AND MIT"
Expand Down
8 changes: 7 additions & 1 deletion sm4/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ 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.0.1 (2020-05-23)
## 0.1.0 (2020-06-08)
### Changed
- Bump `block-cipher` dependency to v0.7 ([#97])
- Upgrade to Rust 2018 edition ([#97])

[#97]: https://github.com/RustCrypto/block-ciphers/pull/97

## 0.0.1 (2020-05-23)
- Initial release
2 changes: 1 addition & 1 deletion sm4/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "sm4"
version = "0.1.0-pre"
version = "0.1.0"
authors = ["andelf <andelf@gmail.com>"]
license = "Apache-2.0 OR MIT"
description = "SM4 block cipher algorithm"
Expand Down
8 changes: 7 additions & 1 deletion threefish/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ 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.0.1 (2020-05-23)
## 0.1.0 (2020-06-08)
### Changed
- Bump `block-cipher` dependency to v0.7 ([#99])
- Upgrade to Rust 2018 edition ([#99])

[#99]: https://github.com/RustCrypto/block-ciphers/pull/99

## 0.0.1 (2020-05-23)
- Initial release
2 changes: 1 addition & 1 deletion threefish/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "threefish"
version = "0.1.0-pre"
version = "0.1.0"
authors = ["The Rust-Crypto Project Developers"]
license = "MIT/Apache-2.0"
description = "Threefish block cipher"
Expand Down
7 changes: 7 additions & 0 deletions twofish/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,13 @@ 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 (2020-06-08)
### Changed
- Bump `block-cipher` dependency to v0.7 ([#100])
- Upgrade to Rust 2018 edition ([#100])

[#100]: https://github.com/RustCrypto/block-ciphers/pull/100

## 0.2.0 (2018-12-23)

## 0.1.0 (2017-11-26)
2 changes: 1 addition & 1 deletion twofish/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "twofish"
version = "0.3.0-pre"
version = "0.3.0"
description = "Twofish block cipher"
authors = ["RustCrypto Developers"]
license = "MIT/Apache-2.0"
Expand Down