如何在 Java 中验证 ASN.1 编码字节流中的时间戳

发布于 2024-12-18 03:39:55 字数 477 浏览 1 评论 0原文

我正在尝试验证 Java 中 ASN.1 编码字节流的时间戳。 我正在使用 bouncycastle 包。

我正在根据从时间戳服务器获得的编码字节创建 TimeStampToken。

TimeStampToken testTsToken = new TimeStampToken(new CMSSignedData(encodedByte));

为了进行验证,有以下函数。

testTsToken.validate(SignerInformationVerifier);
testTsToken.validate(X509Certificate, String);

我现在想知道如何获取这些参数?

如何创建 SignerInformationVerifier 或 X509Certificate?

我将不胜感激任何帮助,因为我已经被这个问题困扰好几天了:/

I'm trying to validate a timestamp from an ASN.1 encoded byte stream in Java.
I'm using the bouncycastle package.

I'm creating the TimeStampToken from the encoded byte I got from the timestampserver.

TimeStampToken testTsToken = new TimeStampToken(new CMSSignedData(encodedByte));

For validation there is the following function.

testTsToken.validate(SignerInformationVerifier);
testTsToken.validate(X509Certificate, String);

I'm now wondering how do I get those Parameters?

How can I create a SignerInformationVerifier or a X509Certificate?.

I would appreciate any help because I'm stuck on this issue for days now :/

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

梦亿 2024-12-25 03:39:55

我的问题是,当询问时间戳时,我忘记询问证书。这就是为什么我无法验证。

My problem was that when asking for the timestamp i forgot to ask for a certificate. That's why I couldn't validate.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文