p12
我将证书文件导入到运行 webapp 的系统Windows 7
上。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;
}
输出中不存在证书,我不确定如何以正确的方式使用证书的别名。