60 lines
2.0 KiB
Java
60 lines
2.0 KiB
Java
package org.bouncycastle.asn1.ocsp;
|
|
|
|
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;
|
|
import org.bouncycastle.asn1.DERTaggedObject;
|
|
|
|
/* loaded from: classes6.dex */
|
|
public class OCSPRequest extends ASN1Object {
|
|
Signature optionalSignature;
|
|
TBSRequest tbsRequest;
|
|
|
|
@Override // org.bouncycastle.asn1.ASN1Object, org.bouncycastle.asn1.ASN1Encodable
|
|
public ASN1Primitive toASN1Primitive() {
|
|
ASN1EncodableVector aSN1EncodableVector = new ASN1EncodableVector();
|
|
aSN1EncodableVector.add(this.tbsRequest);
|
|
if (this.optionalSignature != null) {
|
|
aSN1EncodableVector.add(new DERTaggedObject(true, 0, this.optionalSignature));
|
|
}
|
|
return new DERSequence(aSN1EncodableVector);
|
|
}
|
|
|
|
public TBSRequest getTbsRequest() {
|
|
return this.tbsRequest;
|
|
}
|
|
|
|
public Signature getOptionalSignature() {
|
|
return this.optionalSignature;
|
|
}
|
|
|
|
public static OCSPRequest getInstance(ASN1TaggedObject aSN1TaggedObject, boolean z) {
|
|
return getInstance(ASN1Sequence.getInstance(aSN1TaggedObject, z));
|
|
}
|
|
|
|
public static OCSPRequest getInstance(Object obj) {
|
|
if (obj instanceof OCSPRequest) {
|
|
return (OCSPRequest) obj;
|
|
}
|
|
if (obj != null) {
|
|
return new OCSPRequest(ASN1Sequence.getInstance(obj));
|
|
}
|
|
return null;
|
|
}
|
|
|
|
public OCSPRequest(TBSRequest tBSRequest, Signature signature) {
|
|
this.tbsRequest = tBSRequest;
|
|
this.optionalSignature = signature;
|
|
}
|
|
|
|
private OCSPRequest(ASN1Sequence aSN1Sequence) {
|
|
this.tbsRequest = TBSRequest.getInstance(aSN1Sequence.getObjectAt(0));
|
|
if (aSN1Sequence.size() == 2) {
|
|
this.optionalSignature = Signature.getInstance((ASN1TaggedObject) aSN1Sequence.getObjectAt(1), true);
|
|
}
|
|
}
|
|
}
|