public class KeyStoreUtil extends Object
| Constructor and Description |
|---|
KeyStoreUtil() |
| Modifier and Type | Method and Description |
|---|---|
static void |
addCertificate(File keystoreFile,
char[] storePass,
String alias,
Certificate cert)
Add a certificate to the KeyStore
|
static KeyStore |
getKeyStore(File keyStoreFile,
char[] storePass)
Get the KeyStore
|
static KeyStore |
getKeyStore(InputStream ksStream,
char[] storePass)
Get the Key Store Note: This method wants the InputStream to be not null.
|
static KeyStore |
getKeyStore(String fileURL,
char[] storePass)
Get the Keystore given the url to the keystore file as a string
|
static KeyStore |
getKeyStore(URL url,
char[] storePass)
Get the Keystore given the URL to the keystore
|
static PublicKey |
getPublicKey(KeyStore ks,
String alias,
char[] password)
Get the Public Key from the keystore
|
public static KeyStore getKeyStore(File keyStoreFile, char[] storePass) throws GeneralSecurityException, IOException
keyStoreFile - storePass - GeneralSecurityExceptionIOExceptionpublic static KeyStore getKeyStore(String fileURL, char[] storePass) throws GeneralSecurityException, IOException
fileURL - storePass - GeneralSecurityExceptionIOExceptionpublic static KeyStore getKeyStore(URL url, char[] storePass) throws GeneralSecurityException, IOException
url - storePass - GeneralSecurityExceptionIOExceptionpublic static KeyStore getKeyStore(InputStream ksStream, char[] storePass) throws GeneralSecurityException, IOException
ksStream - storePass - GeneralSecurityExceptionIOExceptionIllegalArgumentException - if ksStream is nullpublic static PublicKey getPublicKey(KeyStore ks, String alias, char[] password) throws GeneralSecurityException
ks - alias - password - GeneralSecurityExceptionpublic static void addCertificate(File keystoreFile, char[] storePass, String alias, Certificate cert) throws GeneralSecurityException, IOException
keystoreFile - storePass - alias - cert - GeneralSecurityExceptionIOExceptionCopyright © 2016 JBoss by Red Hat. All rights reserved.