Skip to content

Latest commit

 

History

History
51 lines (32 loc) · 1.62 KB

CHANGELOG.md

File metadata and controls

51 lines (32 loc) · 1.62 KB

Changelog

All notable changes to this project will be documented in this file.

The format is based on Keep a Changelog, and this project adheres to Semantic Versioning.

[0.12.0] - 2024-07-03

Additions

  • Added Serializable::write_exact so serialization requires less stack space
  • Added support for the P-521 curve

Changes

  • Constrained Aead::AeadImpl to be Send + Sync
  • Bumped subtle dependency and removed byteorder dependency

Removals

  • Removed all impls of serde::{Serialize, Deserailize} from crate. See wiki for migration instructions.

[0.11.0] - 2023-10-11

Removals

  • Removed the redundant re-export of the first encapsulated key type as kem::EncappedKey

Changes

  • Updated x25519-dalek to 2.0
  • Updated subtle to 2.5

[0.10.0] - 2022-10-01

Additions

  • Added alloc feature and feature-gated the open() and seal() methods behind it

Changes

  • Bumped MSRV from 1.56.1 (59eed8a2a 2021-11-01) to 1.57.0 (f1edd0429 2021-11-29)
  • Updated dependencies and weakened zeroize dependency from >=1.3 to just ^1
  • Improved documentation for the AEAD export() method and the KDF labeled_expand() method

[0.9.0] - 2022-05-04

Additions

  • Refactored some internals so end users can theoretically define their own KEMs. See PR #27.

Changes

  • Bumped MSRV from 1.51.0 (2fd73fabe 2021-03-23) to 1.56.1 (59eed8a2a 2021-11-01)
  • Updated dependencies