Skip to content

Commit

Permalink
mostly comment/spec alignment
Browse files Browse the repository at this point in the history
  • Loading branch information
eschorn1 committed Oct 14, 2024
1 parent 499df9c commit e274173
Show file tree
Hide file tree
Showing 14 changed files with 466 additions and 422 deletions.
6 changes: 6 additions & 0 deletions 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.4.3 (2024-10-XX)

- Adapted ExpandedPrivateKey into PrivateKey and ExpandedPublicKey into PublicKey, removed the former(s)
- Internal revision to align comments with released spec
- Revisit/revise supporting benchmarks, embedded target, dudect, fuzz and wasm functionality

## 0.4.2 (2024-10-05)

- Fixed size of SHAKE128 digest in `hash_message()`
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ workspace = { exclude = ["ct_cm4", "dudect", "fuzz", "wasm"] }

[package]
name = "fips204"
version = "0.4.2"
version = "0.4.3"
authors = ["Eric Schorn <[email protected]>"]
description = "FIPS 204: Module-Lattice-Based Digital Signature"
categories = ["cryptography", "no-std"]
Expand Down
2 changes: 1 addition & 1 deletion ct_cm4/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "fips204-ct_cm4"
version = "0.2.2"
version = "0.4.3"
authors = ["Eric Schorn <[email protected]>"]
description = "Cortex-M4 testbench for FIPS 204 (draft) ML-DSA"
edition = "2021"
Expand Down
2 changes: 1 addition & 1 deletion dudect/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "fips204-dudect"
version = "0.4.0"
version = "0.4.3"
authors = ["Eric Schorn <[email protected]>"]
description = "Dudect testbench for FIPS 204 (draft) ML-DSA"
edition = "2021"
Expand Down
2 changes: 1 addition & 1 deletion fuzz/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "fips204-fuzz"
version = "0.2.2"
version = "0.4.3"
authors = ["Eric Schorn <[email protected]>"]
description = "Fuzz harness for FIPS 204 (draft) ML-DSA"
edition = "2021"
Expand Down
220 changes: 129 additions & 91 deletions src/conversion.rs

Large diffs are not rendered by default.

Loading

0 comments on commit e274173

Please sign in to comment.