All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.bouncycastle.asn1.cmc.PKIResponse Maven / Gradle / Ivy

There is a newer version: 1.70_1
Show newest version
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; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy