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 KeyPair |
generateKeyPair(String algo)
Generate a Key Pair
|
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
- GeneralSecurityException
IOException
public static KeyStore getKeyStore(String fileURL, char[] storePass) throws GeneralSecurityException, IOException
fileURL
- storePass
- GeneralSecurityException
IOException
public static KeyStore getKeyStore(URL url, char[] storePass) throws GeneralSecurityException, IOException
url
- storePass
- GeneralSecurityException
IOException
public static KeyStore getKeyStore(InputStream ksStream, char[] storePass) throws GeneralSecurityException, IOException
ksStream
- storePass
- GeneralSecurityException
IOException
IllegalArgumentException
- if ksStream is nullpublic static KeyPair generateKeyPair(String algo) throws GeneralSecurityException
algo
- (RSA, DSA etc)GeneralSecurityException
public static PublicKey getPublicKey(KeyStore ks, String alias, char[] password) throws KeyStoreException, NoSuchAlgorithmException, GeneralSecurityException
ks
- alias
- password
- GeneralSecurityException
KeyStoreException
NoSuchAlgorithmException
public static void addCertificate(File keystoreFile, char[] storePass, String alias, Certificate cert) throws GeneralSecurityException, IOException
keystoreFile
- storePass
- alias
- cert
- GeneralSecurityException
IOException
Copyright © 2012 JBoss by Red Hat. All Rights Reserved.