Skip to content

Commit d822f97

Browse files
committed
Update PQClean upstream
1 parent fba5d80 commit d822f97

File tree

6 files changed

+12
-7
lines changed

6 files changed

+12
-7
lines changed

CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Changelog
22

3+
## 2025-02-27
4+
* Update PQClean to today's version
5+
* Update SPHINCS+ for some minor improvements. This is not yet SLH-DSA.
6+
* Update ML-DSA for some minor improvements.
7+
38
## 2024-12-11
49
* `pqcrypto-hqc` was updated to addresss a security flaw in decapsulation.
510

implementations.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ kems:
6363

6464
signs:
6565
mldsa:
66-
version: 0.1.0
66+
version: 0.1.1
6767
x86_avx2_guard: 'target_arch == "x86_64" && avx2_enabled && !is_windows'
6868
implementations: [clean, avx2, aarch64]
6969
supports_context: true
@@ -87,7 +87,7 @@ signs:
8787
- name: falcon-padded-1024
8888
implementations: [clean, avx2, aarch64]
8989
sphincsplus:
90-
version: 0.7.0
90+
version: 0.7.1
9191
implementations: [clean, avx2]
9292
schemes:
9393
- name: sphincs-shake-128f-simple

pqclean

Submodule pqclean updated 548 files

pqcrypto-mldsa/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "pqcrypto-mldsa"
33
description = "Post-Quantum Signature Scheme mldsa"
44
readme = "README.md"
5-
version = "0.1.0"
5+
version = "0.1.1"
66
authors = ["Thom Wiggers <[email protected]>"]
77
edition = "2021"
88
license = "MIT OR Apache-2.0"

pqcrypto-sphincsplus/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "pqcrypto-sphincsplus"
33
description = "Post-Quantum Signature Scheme sphincsplus"
44
readme = "README.md"
5-
version = "0.7.0"
5+
version = "0.7.1"
66
authors = ["Thom Wiggers <[email protected]>"]
77
edition = "2021"
88
license = "MIT OR Apache-2.0"

pqcrypto/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@ pqcrypto-traits = { path = "../pqcrypto-traits", version = "0.3.5" }
1616
pqcrypto-mlkem = { path = "../pqcrypto-mlkem", version = "0.1.0", optional = true }
1717
pqcrypto-classicmceliece = { path = "../pqcrypto-classicmceliece", version = "0.2.0", optional = true }
1818
pqcrypto-hqc = { path = "../pqcrypto-hqc", version = "0.2.1", optional = true }
19-
pqcrypto-mldsa = { path = "../pqcrypto-mldsa", version = "0.1.0", optional = true }
19+
pqcrypto-mldsa = { path = "../pqcrypto-mldsa", version = "0.1.1", optional = true }
2020
pqcrypto-falcon = { path = "../pqcrypto-falcon", version = "0.4.0", optional = true }
21-
pqcrypto-sphincsplus = { path = "../pqcrypto-sphincsplus", version = "0.7.0", optional = true }
21+
pqcrypto-sphincsplus = { path = "../pqcrypto-sphincsplus", version = "0.7.1", optional = true }
2222

2323
[features]
2424
default = ["pqcrypto-mlkem","pqcrypto-classicmceliece","pqcrypto-hqc","pqcrypto-mldsa","pqcrypto-falcon","pqcrypto-sphincsplus",]

0 commit comments

Comments
 (0)