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
46 changes: 31 additions & 15 deletions Cargo.lock

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

18 changes: 18 additions & 0 deletions cipher/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,24 @@ 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 (2021-04-28)
### Added
- Encrypt/decrypt-only block cipher traits ([#352])
- Re-export `blobby` from root ([#435])
- Block cipher trait blanket impls for refs ([#441])

### Changed
- Consolidate error types ([#373])
- Change `SeekNum` impls to fit with the new `BlockBuffer` ([#435])
- Reorganize modules ([#435])
- Renamed `new_var` to `new_from_slice(s)` ([#442])

[#352]: https://github.com/RustCrypto/traits/pull/352
[#373]: https://github.com/RustCrypto/traits/pull/373
[#435]: https://github.com/RustCrypto/traits/pull/435
[#441]: https://github.com/RustCrypto/traits/pull/441
[#442]: https://github.com/RustCrypto/traits/pull/442

## 0.2.5 (2020-11-01)
### Fixed
- Nested macros used old deprecated names ([#360])
Expand Down
2 changes: 1 addition & 1 deletion cipher/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "cipher"
description = "Traits for describing block ciphers and stream ciphers"
version = "0.3.0-pre.5"
version = "0.4.0-pre"
authors = ["RustCrypto Developers"]
license = "MIT OR Apache-2.0"
readme = "README.md"
Expand Down
6 changes: 6 additions & 0 deletions crypto-mac/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.11.0 (2021-04-28)
### Changed
- Bump `cipher` dependency to v0.3 ([#621])

[#621]: https://github.com/RustCrypto/traits/pull/621

## 0.10.0 (2020-10-15)
### Changed
- Replace `block-cipher` crate with new `cipher` crate ([#337], [#338])
Expand Down
4 changes: 2 additions & 2 deletions crypto-mac/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "crypto-mac"
description = "Trait for Message Authentication Code (MAC) algorithms"
version = "0.11.0-pre.1"
version = "0.12.0-pre"
authors = ["RustCrypto Developers"]
license = "MIT OR Apache-2.0"
readme = "README.md"
Expand All @@ -14,7 +14,7 @@ categories = ["cryptography", "no-std"]
[dependencies]
generic-array = "0.14"
crypto-common = { version = "=0.1.0-pre", path = "../crypto-common" }
cipher = { version = "=0.3.0-pre.5", path = "../cipher" }
cipher = { version = "=0.4.0-pre", path = "../cipher" }
subtle = { version = "2", default-features = false }

blobby = { version = "0.3", optional = true }
Expand Down
9 changes: 4 additions & 5 deletions crypto/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,12 @@ edition = "2018"

[dependencies]
aead = { version = "0.4", optional = true, path = "../aead" }
cipher = { version = "=0.3.0-pre.5", optional = true, path = "../cipher" }
common = { version = "=0.1.0-pre", package = "crypto-common", path = "../crypto-common" }
digest = { version = "0.10.0-pre", optional = true, path = "../digest" }
cipher = { version = "0.3", optional = true }
digest = { version = "0.9", optional = true }
elliptic-curve = { version = "0.9", optional = true, path = "../elliptic-curve" }
mac = { version = "=0.11.0-pre.1", package = "crypto-mac", optional = true, path = "../crypto-mac" }
mac = { version = "0.11", package = "crypto-mac", optional = true }
password-hash = { version = "=0.2.0-pre", optional = true, path = "../password-hash" }
signature = { version = "1.3.0", optional = true, default-features = false, path = "../signature" }
signature = { version = "1.2.0", optional = true, default-features = false, path = "../signature" }
universal-hash = { version = "0.4", optional = true, path = "../universal-hash" }

[features]
Expand Down
2 changes: 0 additions & 2 deletions crypto/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,6 @@
#![forbid(unsafe_code)]
#![warn(rust_2018_idioms)]

pub use common;

#[cfg(feature = "aead")]
pub use aead;

Expand Down