|
PicketLink Federation Core 2.1.6.Final-redhat-2 | |||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectorg.picketlink.identity.federation.core.util.KeyStoreUtil
public class KeyStoreUtil
Utility to handle Java Keystore
Constructor Summary | |
---|---|
KeyStoreUtil()
|
Method Summary | |
---|---|
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 |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
public KeyStoreUtil()
Method Detail |
---|
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
|
PicketLink Federation Core 2.1.6.Final-redhat-2 | |||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |