93 lines
3.3 KiB
Java
93 lines
3.3 KiB
Java
package org.bouncycastle.asn1.cmp;
|
|
|
|
import org.bouncycastle.asn1.ASN1Encodable;
|
|
import org.bouncycastle.asn1.ASN1EncodableVector;
|
|
import org.bouncycastle.asn1.ASN1Integer;
|
|
import org.bouncycastle.asn1.ASN1Object;
|
|
import org.bouncycastle.asn1.ASN1OctetString;
|
|
import org.bouncycastle.asn1.ASN1Primitive;
|
|
import org.bouncycastle.asn1.ASN1Sequence;
|
|
import org.bouncycastle.asn1.DERSequence;
|
|
|
|
/* loaded from: classes6.dex */
|
|
public class CertResponse extends ASN1Object {
|
|
private ASN1Integer certReqId;
|
|
private CertifiedKeyPair certifiedKeyPair;
|
|
private ASN1OctetString rspInfo;
|
|
private PKIStatusInfo status;
|
|
|
|
@Override // org.bouncycastle.asn1.ASN1Object, org.bouncycastle.asn1.ASN1Encodable
|
|
public ASN1Primitive toASN1Primitive() {
|
|
ASN1EncodableVector aSN1EncodableVector = new ASN1EncodableVector();
|
|
aSN1EncodableVector.add(this.certReqId);
|
|
aSN1EncodableVector.add(this.status);
|
|
CertifiedKeyPair certifiedKeyPair = this.certifiedKeyPair;
|
|
if (certifiedKeyPair != null) {
|
|
aSN1EncodableVector.add(certifiedKeyPair);
|
|
}
|
|
ASN1OctetString aSN1OctetString = this.rspInfo;
|
|
if (aSN1OctetString != null) {
|
|
aSN1EncodableVector.add(aSN1OctetString);
|
|
}
|
|
return new DERSequence(aSN1EncodableVector);
|
|
}
|
|
|
|
public PKIStatusInfo getStatus() {
|
|
return this.status;
|
|
}
|
|
|
|
public CertifiedKeyPair getCertifiedKeyPair() {
|
|
return this.certifiedKeyPair;
|
|
}
|
|
|
|
public ASN1Integer getCertReqId() {
|
|
return this.certReqId;
|
|
}
|
|
|
|
public static CertResponse getInstance(Object obj) {
|
|
if (obj instanceof CertResponse) {
|
|
return (CertResponse) obj;
|
|
}
|
|
if (obj != null) {
|
|
return new CertResponse(ASN1Sequence.getInstance(obj));
|
|
}
|
|
return null;
|
|
}
|
|
|
|
private CertResponse(ASN1Sequence aSN1Sequence) {
|
|
ASN1Encodable objectAt;
|
|
this.certReqId = ASN1Integer.getInstance(aSN1Sequence.getObjectAt(0));
|
|
this.status = PKIStatusInfo.getInstance(aSN1Sequence.getObjectAt(1));
|
|
if (aSN1Sequence.size() >= 3) {
|
|
if (aSN1Sequence.size() == 3) {
|
|
objectAt = aSN1Sequence.getObjectAt(2);
|
|
if (!(objectAt instanceof ASN1OctetString)) {
|
|
this.certifiedKeyPair = CertifiedKeyPair.getInstance(objectAt);
|
|
return;
|
|
}
|
|
} else {
|
|
this.certifiedKeyPair = CertifiedKeyPair.getInstance(aSN1Sequence.getObjectAt(2));
|
|
objectAt = aSN1Sequence.getObjectAt(3);
|
|
}
|
|
this.rspInfo = ASN1OctetString.getInstance(objectAt);
|
|
}
|
|
}
|
|
|
|
public CertResponse(ASN1Integer aSN1Integer, PKIStatusInfo pKIStatusInfo, CertifiedKeyPair certifiedKeyPair, ASN1OctetString aSN1OctetString) {
|
|
if (aSN1Integer == null) {
|
|
throw new IllegalArgumentException("'certReqId' cannot be null");
|
|
}
|
|
if (pKIStatusInfo == null) {
|
|
throw new IllegalArgumentException("'status' cannot be null");
|
|
}
|
|
this.certReqId = aSN1Integer;
|
|
this.status = pKIStatusInfo;
|
|
this.certifiedKeyPair = certifiedKeyPair;
|
|
this.rspInfo = aSN1OctetString;
|
|
}
|
|
|
|
public CertResponse(ASN1Integer aSN1Integer, PKIStatusInfo pKIStatusInfo) {
|
|
this(aSN1Integer, pKIStatusInfo, null, null);
|
|
}
|
|
}
|