我正在尝试使用Bouncy Castle解密一些私钥(.pfx X509Certificate)。 如果我运行代码独立(junit),它工作正常,但是当我在使用arquillian部署为war文件的wildfly上运行它时,我面临一些问题:
org.jboss.arquillian.test.spi.ArquillianProxyException: javax.ejb.EJBException : JBAS014580: Unexpected Error
[Proxied because : Original exception caused: class java.lang.ClassFormatError: Absent Code attribute in method
that is not native or abstract in class file javax/ejb/EJBException]
我认为arquillian正在封装真正的异常,但日志文件中不再出现错误。
在pom文件中我声明它是提供的,使用提供的版本。
安装的版本是:
$WILDFLY_HOME\modules\system\layers\base\org\bouncycastle\main\bcmail-jdk15on-1.50.jar
$WILDFLY_HOME\modules\system\layers\base\org\bouncycastle\main\bcpkix-jdk15on-1.50.jar
$WILDFLY_HOME\modules\system\layers\base\org\bouncycastle\main\bcprov-jdk15on-1.50.jar
我还尝试使用直接在pom文件中指定的版本bcprov-jdk16,其范围为编译/运行时,但它仍无法正常工作。
此时出现错误:
org.bouncycastle.x509.extension.X509ExtensionUtil.getIssuerAlternativeNames(java.security.cert.X509Certificate);
X509ExtensionUtil.getIssuerAlternativeNames(certificate) = >Unknown type "org.bouncycastle.x509.extension.X509ExtensionUtil"<
其他人遇到过此问题或知道如何解决?有什么提示吗?
答案 0 :(得分:0)
我仅使用java 8 api解决了我的问题,如下所示:
Collection<?> altNames = certificate.getSubjectAlternativeNames();
for (Object i : altNames) {
List<Object> item = (java.util.List) i;
Integer type = (Integer) item.get(0);
try {
if (type > 0) {
continue;
}
String[] arr = StringEscapeUtils.escapeHtml(new String((byte[]) item.get(1))).split(";");
return Arrays.asList(arr)
.stream()
.map(k -> k.trim())
.filter(u -> isCNPJ(u))
.findFirst().get();
} catch (Exception e) {
LOG.error(e.getMessage(), e);
}
}
return null;
isCNPJ只是一种过滤我需要的值的方法。 StringEscapeUtils是一个apache commons lang class