public class KeyStoreUtil extends Object
| Modifier and Type | Method and Description | 
|---|---|
| static void | load(KeyStore keystore,
    InputStream is,
    char[] storePass)Loads a KeyStore from an InputStream working around the known JDK bug
 https://bugs.openjdk.java.net/browse/JDK-8157404. | 
public static void load(KeyStore keystore, InputStream is, char[] storePass) throws NoSuchAlgorithmException, CertificateException, IOException
keystore - The KeyStore to load from the InputStreamis - The InputStream to use to populate the KeyStorestorePass - The password to access the KeyStoreIOException - If an I/O occurs reading from the given InputStreamCertificateException - If one or more certificates can't be loaded into the
              KeyStoreNoSuchAlgorithmException - If the algorithm specified to validate the integrity of the
              KeyStore cannot be foundCopyright © 2000-2020 Apache Software Foundation. All Rights Reserved.