mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-26 06:14:49 +02:00
8298390: Implement JEP 496: Quantum-Resistant Module-Lattice-Based Key Encapsulation Mechanism
Co-authored-by: Ferenc Rakoczi <ferenc.r.rakoczi@oracle.com> Reviewed-by: valeriep
This commit is contained in:
parent
6d3becb486
commit
13987b4244
10 changed files with 4781 additions and 1 deletions
|
@ -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;
|
||||
|
||||
/**
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue