如何在 Java 中验证 ASN.1 编码字节流中的时间戳
我正在尝试验证 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我的问题是,当询问时间戳时,我忘记询问证书。这就是为什么我无法验证。
My problem was that when asking for the timestamp i forgot to ask for a certificate. That's why I couldn't validate.