public class PKCS8KeyStoreLoader extends Object implements IKeyStoreLoader
Constructor and Description |
---|
PKCS8KeyStoreLoader(String pkcs8PrivateKeyPath,
String certFilePath,
String keyPass,
String entryAlias)
constructs an instance of KeyStoreLoader
|
Modifier and Type | Method and Description |
---|---|
KeyStore |
getKeyStore()
Returns a JKS keyStore from the given private key, certificate path, key password and alias.
|
public PKCS8KeyStoreLoader(String pkcs8PrivateKeyPath, String certFilePath, String keyPass, String entryAlias)
pkcs8PrivateKeyPath
- - path to a private key file. Key must be in PKCS8 format,
PEM encoded and unencrypted.certFilePath
- - path to certificate file. File must be PEM encoded.keyPass
- - password to secure the private key within the keystore.
This will be required later to retrieve the private key
back from the keystore.entryAlias
- - alias for the given entry within the keystore.public KeyStore getKeyStore()
getKeyStore
in interface IKeyStoreLoader
Copyright © 2005-2017 Apache Software Foundation. All Rights Reserved.