我是 Bouncycastle 的新手。我可以timeStampToken
通过 http 连接从 TSA 服务器获取。
InputStream in = con.getInputStream();
TimeStampResp resp = TimeStampResp.getInstance(new ASN1InputStream(in).readObject());
TimeStampResponse response = new TimeStampResponse(resp);
response.validate(timeStampRequest);
InputStream in = con.getInputStream();
TimeStampResp resp = TimeStampResp.getInstance(new ASN1InputStream(in).readObject());
TimeStampResponse response = new TimeStampResponse(resp);
response.validate(timeStampRequest);
接下来,我必须从TimeStampResponse
对象生成一个文件。使用其他客户端应用程序生成的文件具有 CRL / OCSP url 信息,但我的文件没有此信息。我怎样才能生成这个文件?
FileOutputStream fos;
try {
fos = new FileOutputStream(
"C:/FORM-003.pdf.tst");
fos.write(response.getEncoded());
fos.close();
} catch (FileNotFoundException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}
感谢您的帮助。