Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/quite/humla-spongycastle.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/pkix/src
diff options
context:
space:
mode:
authorDavid Hook <dgh@cryptoworkshop.com>2013-11-25 06:55:16 +0400
committerDavid Hook <dgh@cryptoworkshop.com>2013-11-25 06:55:16 +0400
commit554892cf98c9d489eac3c082a3ce93fa2d75556c (patch)
treea92140288e90e6a6735be297755846c572ef401e /pkix/src
parentbf0be53e9b69fb496d43c8cf881c1700017fa57c (diff)
update
Diffstat (limited to 'pkix/src')
-rw-r--r--pkix/src/main/jdk1.3/org/bouncycastle/tsp/cms/CMSTimeStampedData.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkix/src/main/jdk1.3/org/bouncycastle/tsp/cms/CMSTimeStampedData.java b/pkix/src/main/jdk1.3/org/bouncycastle/tsp/cms/CMSTimeStampedData.java
index 14cd28a8..e352f021 100644
--- a/pkix/src/main/jdk1.3/org/bouncycastle/tsp/cms/CMSTimeStampedData.java
+++ b/pkix/src/main/jdk1.3/org/bouncycastle/tsp/cms/CMSTimeStampedData.java
@@ -90,7 +90,7 @@ public class CMSTimeStampedData
System.arraycopy(timeStamps, 0, newTimeStamps, 0, timeStamps.length);
- newTimeStamps[timeStamps.length] = new TimeStampAndCRL(token.toCMSSignedData().getContentInfo());
+ newTimeStamps[timeStamps.length] = new TimeStampAndCRL(token.toCMSSignedData().toASN1Structure());
return new CMSTimeStampedData(new ContentInfo(CMSObjectIdentifiers.timestampedData, new TimeStampedData(timeStampedData.getDataUri(), timeStampedData.getMetaData(), timeStampedData.getContent(), new Evidence(new TimeStampTokenEvidence(newTimeStamps)))));
}