PublicKey publicKey = KeyStoreUtil.getPublicKey(this.ks, this.signingAlias, this.signingKeyPass);
return new KeyPair(publicKey, privateKey);
}
catch (KeyStoreException e)
{
throw new TrustKeyConfigurationException(e);
}
catch (GeneralSecurityException e)
{
throw new TrustKeyProcessingException(e);
}