Sun 提供了符合 XML-Enc 规范的 Java API?
我正在搜索是否有如何执行 XML-Enc 规范 http://en.wikipedia.org/ wiki/XML_Encryption,无需使用 Apache Santuario 等外部 API。
提前致谢!
I`m searching if there is how to execute the XML-Enc specification http://en.wikipedia.org/wiki/XML_Encryption without use of external APIs like Apache Santuario.
Thanks in advance!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不,没有内部 XML 加密库,因为 JSR-106 已被撤销。所以你必须使用外部API。不幸的是,Santuario API 并不像 Java 运行时中包含的大多数 API 那样干净。
http://www.jcp.org/en/jsr/detail?id=106
PS 在使用任何 XML 加密库时,一定要在解密之前验证内容,否则会遇到诸如 padding oracle 攻击等问题(这个警告在 W3C XML 加密规范中,但经常被忽略) 。
Nope, there is no internal XML encryption library, because the JSR-106 has been withdrawn. So you have to use a external API. Unfortunately the Santuario API is not as clean as most API's that are included in the Java runtime.
http://www.jcp.org/en/jsr/detail?id=106
PS when using any XML encryption library, be sure to verify the content before decrypting, or you will have problems with e.g. padding oracle attacks (this warning is in the W3C XML encryption specification, but it is ignored all to often).