我将p12
证书文件导入了运行Windows 7
Web应用程序的Tomcat
上的系统。我尝试使用以下代码检索证书:
private KSPrivateKeyEntry getKSPrivateKeyEntry(final String alias, ProtectionParameter passwordProtection) {
KeyStore keyStore = getKeyStore();
try {
if (keyStore.isKeyEntry(alias)) {
final PrivateKeyEntry entry = (PrivateKeyEntry) keyStore.getEntry(alias, passwordProtection);
return new KSPrivateKeyEntry(alias, entry);
}
} catch (GeneralSecurityException e) {
throw new DSSException("Unable to retrieve key for alias '" + alias + "'", e);
}
return null;
}
输出中不存在证书,我不确定如何以适当的方式对证书使用别名。