如何使用 xades4j 为二进制内容创建 XAdES-T 签名?
How can I create XAdES-T signature for binary content with xades4j?
我想为二进制文件创建分离的 XAdES-T 签名。我在另一个堆栈溢出 post 中发现了 xades4j 工具。但我只找到了为 xml 文档创建签名的示例。我如何使用 xades4j 签署二进制文件?
根据您的情况,您有不同的选项来设置签名数据对象。查看 GitHub 上的 xades4j
wiki:
- https://github.com/luisgoncalves/xades4j/wiki/DefiningSignedResources
- https://github.com/luisgoncalves/xades4j/wiki/SignatureTypes#detached-signatures-over-non-xml-resources
此外,Apache XML 安全性(xades4j
的基础)supports file:
URIs, so you might also use this along with specifying the base URI。
我想为二进制文件创建分离的 XAdES-T 签名。我在另一个堆栈溢出 post 中发现了 xades4j 工具。但我只找到了为 xml 文档创建签名的示例。我如何使用 xades4j 签署二进制文件?
根据您的情况,您有不同的选项来设置签名数据对象。查看 GitHub 上的 xades4j
wiki:
- https://github.com/luisgoncalves/xades4j/wiki/DefiningSignedResources
- https://github.com/luisgoncalves/xades4j/wiki/SignatureTypes#detached-signatures-over-non-xml-resources
此外,Apache XML 安全性(xades4j
的基础)supports file:
URIs, so you might also use this along with specifying the base URI。