org.bouncycastle.asn1.cmc.PendInfo Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bcprov-ext-debug-jdk15on Show documentation
Show all versions of bcprov-ext-debug-jdk15on Show documentation
The Bouncy Castle Crypto package is a Java implementation of cryptographic algorithms. This jar contains JCE provider and lightweight API for the Bouncy Castle Cryptography APIs for JDK 1.5 to JDK 1.8. Note: this package includes the NTRU encryption algorithms.
package org.bouncycastle.asn1.cmc;
import org.bouncycastle.asn1.ASN1EncodableVector;
import org.bouncycastle.asn1.ASN1GeneralizedTime;
import org.bouncycastle.asn1.ASN1Object;
import org.bouncycastle.asn1.ASN1OctetString;
import org.bouncycastle.asn1.ASN1Primitive;
import org.bouncycastle.asn1.ASN1Sequence;
import org.bouncycastle.asn1.DEROctetString;
import org.bouncycastle.asn1.DERSequence;
import org.bouncycastle.util.Arrays;
/**
*
* PendInfo ::= SEQUENCE {
* pendToken OCTET STRING,
* pendTime GeneralizedTime
* }
*
*/
public class PendInfo
extends ASN1Object
{
private final byte[] pendToken;
private final ASN1GeneralizedTime pendTime;
public PendInfo(byte[] pendToken, ASN1GeneralizedTime pendTime)
{
this.pendToken = Arrays.clone(pendToken);
this.pendTime = pendTime;
}
private PendInfo(ASN1Sequence seq)
{
if (seq.size() != 2)
{
throw new IllegalArgumentException("incorrect sequence size");
}
this.pendToken = Arrays.clone(ASN1OctetString.getInstance(seq.getObjectAt(0)).getOctets());
this.pendTime = ASN1GeneralizedTime.getInstance(seq.getObjectAt(1));
}
public static PendInfo getInstance(Object o)
{
if (o instanceof PendInfo)
{
return (PendInfo)o;
}
if (o != null)
{
return new PendInfo(ASN1Sequence.getInstance(o));
}
return null;
}
public ASN1Primitive toASN1Primitive()
{
ASN1EncodableVector v = new ASN1EncodableVector();
v.add(new DEROctetString(pendToken));
v.add(pendTime);
return new DERSequence(v);
}
public byte[] getPendToken()
{
return pendToken;
}
public ASN1GeneralizedTime getPendTime()
{
return pendTime;
}
}