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
2 changes: 2 additions & 0 deletions aes-kw/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## 0.3.1 (UNRELEASED)
### Added
- Implementation of `Copy`, `Clone`, and `Hash` traits for `Error` ([[#78]])
- Implementation of `ZeroizeOnDrop` gated on `zeroize` crate feature ([#80])

### Changed
- Use `doc_cfg` instead of `doc_auto_cfg` ([#83])

[#78]: https://github.com/RustCrypto/key-wraps/pull/78
[#80]: https://github.com/RustCrypto/key-wraps/pull/80
[#83]: https://github.com/RustCrypto/key-wraps/pull/83

Expand Down
2 changes: 1 addition & 1 deletion aes-kw/src/error.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
use core::fmt;

/// Errors emitted from the wrap and unwrap operations.
#[derive(Debug, PartialEq, Eq)]
Comment thread
newpavlov marked this conversation as resolved.
#[derive(Copy, Clone, Hash, Debug, PartialEq, Eq)]
pub enum Error {
/// Input data length invalid.
InvalidDataSize,
Expand Down
Loading