mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-28 15:24:43 +02:00
8166596
: TLS support for the EdDSA signature algorithm
Reviewed-by: xuelei
This commit is contained in:
parent
3932527288
commit
d80ae05f61
9 changed files with 825 additions and 60 deletions
|
@ -424,6 +424,9 @@ final class ECDHServerKeyExchange {
|
|||
case "EC":
|
||||
signer = Signature.getInstance(JsseJce.SIGNATURE_ECDSA);
|
||||
break;
|
||||
case "EdDSA":
|
||||
signer = Signature.getInstance(JsseJce.SIGNATURE_EDDSA);
|
||||
break;
|
||||
case "RSA":
|
||||
signer = RSASignature.getInstance();
|
||||
break;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue