org.spongycastle.asn1.cms.TimeStampTokenEvidence Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of scprov-jdk15on Show documentation
Show all versions of scprov-jdk15on Show documentation
The Bouncy Castle Crypto package is a Java implementation of cryptographic algorithms.
This jar contains JCE provider for the Bouncy Castle Cryptography APIs for JDK 1.5 to JDK 1.7.
package org.spongycastle.asn1.cms;
import java.util.Enumeration;
import org.spongycastle.asn1.ASN1EncodableVector;
import org.spongycastle.asn1.ASN1Object;
import org.spongycastle.asn1.ASN1Primitive;
import org.spongycastle.asn1.ASN1Sequence;
import org.spongycastle.asn1.ASN1TaggedObject;
import org.spongycastle.asn1.DERSequence;
public class TimeStampTokenEvidence
extends ASN1Object
{
private TimeStampAndCRL[] timeStampAndCRLs;
public TimeStampTokenEvidence(TimeStampAndCRL[] timeStampAndCRLs)
{
this.timeStampAndCRLs = timeStampAndCRLs;
}
public TimeStampTokenEvidence(TimeStampAndCRL timeStampAndCRL)
{
this.timeStampAndCRLs = new TimeStampAndCRL[1];
timeStampAndCRLs[0] = timeStampAndCRL;
}
private TimeStampTokenEvidence(ASN1Sequence seq)
{
this.timeStampAndCRLs = new TimeStampAndCRL[seq.size()];
int count = 0;
for (Enumeration en = seq.getObjects(); en.hasMoreElements();)
{
timeStampAndCRLs[count++] = TimeStampAndCRL.getInstance(en.nextElement());
}
}
public static TimeStampTokenEvidence getInstance(ASN1TaggedObject tagged, boolean explicit)
{
return getInstance(ASN1Sequence.getInstance(tagged, explicit));
}
public static TimeStampTokenEvidence getInstance(Object obj)
{
if (obj instanceof TimeStampTokenEvidence)
{
return (TimeStampTokenEvidence)obj;
}
else if (obj != null)
{
return new TimeStampTokenEvidence(ASN1Sequence.getInstance(obj));
}
return null;
}
public TimeStampAndCRL[] toTimeStampAndCRLArray()
{
return timeStampAndCRLs;
}
/**
*
* TimeStampTokenEvidence ::=
* SEQUENCE SIZE(1..MAX) OF TimeStampAndCRL
*
* @return
*/
public ASN1Primitive toASN1Primitive()
{
ASN1EncodableVector v = new ASN1EncodableVector();
for (int i = 0; i != timeStampAndCRLs.length; i++)
{
v.add(timeStampAndCRLs[i]);
}
return new DERSequence(v);
}
}