mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-26 14:24:46 +02:00
8166597: Crypto support for the EdDSA Signature Algorithm
Reviewed-by: weijun, mullan, wetmore
This commit is contained in:
parent
02293daa64
commit
fd28aad72d
47 changed files with 4697 additions and 155 deletions
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
* Copyright (c) 2018, 2019, Oracle and/or its affiliates. All rights reserved.
|
||||
* Copyright (c) 2018, 2020, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
|
@ -52,6 +52,22 @@ public class NamedParameterSpec implements AlgorithmParameterSpec {
|
|||
public static final NamedParameterSpec X448
|
||||
= new NamedParameterSpec("X448");
|
||||
|
||||
/**
|
||||
* The Ed25519 parameters
|
||||
*
|
||||
* @since 15
|
||||
*/
|
||||
public static final NamedParameterSpec ED25519
|
||||
= new NamedParameterSpec("Ed25519");
|
||||
|
||||
/**
|
||||
* The Ed448 parameters
|
||||
*
|
||||
* @since 15
|
||||
*/
|
||||
public static final NamedParameterSpec ED448
|
||||
= new NamedParameterSpec("Ed448");
|
||||
|
||||
private String name;
|
||||
|
||||
/**
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue