org.bouncycastle.asn1.cmc.PKIResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bcutil-jdk15to18 Show documentation
Show all versions of bcutil-jdk15to18 Show documentation
The Bouncy Castle Java APIs for ASN.1 extension and utility APIs used to support bcpkix and bctls. This jar contains APIs for JDK 1.5 to JDK 1.8.
package org.bouncycastle.asn1.cmc;
import org.bouncycastle.asn1.ASN1EncodableVector;
import org.bouncycastle.asn1.ASN1Object;
import org.bouncycastle.asn1.ASN1Primitive;
import org.bouncycastle.asn1.ASN1Sequence;
import org.bouncycastle.asn1.ASN1TaggedObject;
import org.bouncycastle.asn1.DERSequence;
/**
*
* -- This defines the response message in the protocol
* id-cct-PKIResponse OBJECT IDENTIFIER ::= { id-cct 3 }
*
* ResponseBody ::= PKIResponse
*
* PKIResponse ::= SEQUENCE {
* controlSequence SEQUENCE SIZE(0..MAX) OF TaggedAttribute,
* cmsSequence SEQUENCE SIZE(0..MAX) OF TaggedContentInfo,
* otherMsgSequence SEQUENCE SIZE(0..MAX) OF OtherMsg
* }
*
*/
public class PKIResponse
extends ASN1Object
{
private final ASN1Sequence controlSequence;
private final ASN1Sequence cmsSequence;
private final ASN1Sequence otherMsgSequence;
private PKIResponse(ASN1Sequence seq)
{
if (seq.size() != 3)
{
throw new IllegalArgumentException("incorrect sequence size");
}
this.controlSequence = ASN1Sequence.getInstance(seq.getObjectAt(0));
this.cmsSequence = ASN1Sequence.getInstance(seq.getObjectAt(1));
this.otherMsgSequence = ASN1Sequence.getInstance(seq.getObjectAt(2));
}
public static PKIResponse getInstance(Object o)
{
if (o instanceof PKIResponse)
{
return (PKIResponse)o;
}
if (o != null)
{
return new PKIResponse(ASN1Sequence.getInstance(o));
}
return null;
}
public static PKIResponse getInstance(
ASN1TaggedObject obj,
boolean explicit)
{
return getInstance(ASN1Sequence.getInstance(obj, explicit));
}
public ASN1Primitive toASN1Primitive()
{
ASN1EncodableVector v = new ASN1EncodableVector(3);
v.add(controlSequence);
v.add(cmsSequence);
v.add(otherMsgSequence);
return new DERSequence(v);
}
public ASN1Sequence getControlSequence()
{
return controlSequence;
}
public ASN1Sequence getCmsSequence()
{
return cmsSequence;
}
public ASN1Sequence getOtherMsgSequence()
{
return otherMsgSequence;
}
}