Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

8298390: Implement JEP 496: Quantum-Resistant Module-Lattice-Based Key Encapsulation Mechanism #21478

Closed
wants to merge 41 commits into from
Closed
Changes from 1 commit
Commits
Show all changes
41 commits
Select commit Hold shift + click to select a range
458f848
the fix
wangweij Sep 24, 2024
ba68b30
renames
wangweij Sep 25, 2024
4a97423
ensure key is intact after being used
wangweij Sep 25, 2024
5dd08ef
add support for private class RawKeySpec
wangweij Sep 26, 2024
1516c96
more test, more RAW support, fix a bug on cleaning up getRawBytes output
wangweij Sep 27, 2024
c11e4ef
Merge branch 'master' into 8340327
wangweij Oct 3, 2024
09a73c7
Refactored ML_KEM to separate core protocol from ML_KEM_Provider
blperez01 Oct 11, 2024
03cfcca
Added SHA3Parallel
blperez01 Oct 11, 2024
b557a6a
Added ML_KEM_Provider
blperez01 Oct 11, 2024
5992b55
remove PR21167 changes
wangweij Oct 11, 2024
3b3e782
Merge branch 'master' into ml-kem
wangweij Oct 11, 2024
18e8f9a
add a newline and remove one
wangweij Oct 15, 2024
94eab17
cleanup
wangweij Oct 15, 2024
e595643
NamedParameterSpec constants
wangweij Oct 15, 2024
f80e8d7
randomMessage belongs to its caller
wangweij Nov 4, 2024
d1f42ef
Removed several unused variables and unnecessy allocations
blperez01 Nov 4, 2024
505f2e2
Added benchmark
mcpowers Nov 5, 2024
e5385e4
trailing whitespace
mcpowers Nov 5, 2024
88489c2
ACVP tests
wangweij Nov 5, 2024
a61d007
Added key validity checks to ML_KEM_Provider
blperez01 Nov 5, 2024
ce9af8b
Refactored key checks
blperez01 Nov 6, 2024
438d234
copyright
mcpowers Nov 6, 2024
d285273
NIST OIDs
wangweij Nov 7, 2024
293fb69
copyright header
wangweij Nov 7, 2024
b56d14e
default random for encaps, supported alg in SunJCE
wangweij Nov 7, 2024
c44129a
Renamed static final variables to all caps
blperez01 Nov 7, 2024
08d20fb
Added constants for hash functions and seed length
blperez01 Nov 7, 2024
9695ae8
cleanup and reformat ML_KEM_Provider
wangweij Nov 7, 2024
f01866c
comments
wangweij Nov 8, 2024
1cd3dc0
Merge branch 'master' into ml-kem
wangweij Nov 8, 2024
3284e76
no classpath exception in test copyright header
wangweij Nov 8, 2024
feb2407
Merge branch 'openjdk:master' into ml-kem
blperez01 Nov 13, 2024
f1d7806
Cleaned up ML-KEM and responded to several comments
blperez01 Nov 13, 2024
5e529c1
Responded to comments, renamed ML_KEM_Provider to ML_KEM_Impls
blperez01 Nov 14, 2024
e886838
Moved SHA3Parallel to proper location
blperez01 Nov 14, 2024
4cdbe86
Tidying up sealed classes in ML_KEM_Impls
blperez01 Nov 14, 2024
62abd47
Fixed errors and removed intrinsics functionality
blperez01 Nov 19, 2024
587aa40
Added ML-KEM to the Deterministic.java test
blperez01 Nov 20, 2024
b9eb0a1
ML_KEM no longer initialized with int
mcpowers Nov 20, 2024
33238ce
Removed trailing whitespace, shortened lines
blperez01 Nov 21, 2024
89b0212
removed unnecessary allocations in mlKemVectorScalarMult
blperez01 Nov 21, 2024
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
Original file line number Diff line number Diff line change
@@ -68,6 +68,30 @@ public class NamedParameterSpec implements AlgorithmParameterSpec {
public static final NamedParameterSpec ED448
= new NamedParameterSpec("Ed448");

/**
* The ML-KEM-512 parameters
*
* @since 24
*/
public static final NamedParameterSpec ML_KEM_512
= new NamedParameterSpec("ML-KEM-512");

/**
* The ML-KEM-768 parameters
*
* @since 24
*/
public static final NamedParameterSpec ML_KEM_768
= new NamedParameterSpec("ML-KEM-768");

/**
* The ML-KEM-1024 parameters
*
* @since 24
*/
public static final NamedParameterSpec ML_KEM_1024
= new NamedParameterSpec("ML-KEM-1024");

private final String name;

/**