mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-26 14:24:46 +02:00
8331008: Implement JEP 478: Key Derivation Function API (Preview)
Co-authored-by: Rajan Halade <rhalade@openjdk.org> Co-authored-by: Weijun Wang <weijun@openjdk.org> Co-authored-by: Valerie Peng <valeriep@openjdk.org> Reviewed-by: weijun, valeriep
This commit is contained in:
parent
847cc5ebac
commit
2a1ae0ff89
17 changed files with 3321 additions and 1 deletions
|
@ -27,6 +27,7 @@ package java.security;
|
|||
|
||||
import jdk.internal.event.SecurityProviderServiceEvent;
|
||||
|
||||
import javax.crypto.KDFParameters;
|
||||
import javax.security.auth.login.Configuration;
|
||||
import java.io.*;
|
||||
import java.security.cert.CertStoreParameters;
|
||||
|
@ -1604,6 +1605,7 @@ public abstract class Provider extends Properties {
|
|||
addEngine("KeyGenerator", false, null);
|
||||
addEngine("SecretKeyFactory", false, null);
|
||||
addEngine("KEM", true, null);
|
||||
addEngine("KDF", false, KDFParameters.class);
|
||||
// JSSE
|
||||
addEngine("KeyManagerFactory", false, null);
|
||||
addEngine("SSLContext", false, null);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue