147 lines
5.5 KiB
Java
147 lines
5.5 KiB
Java
package org.bouncycastle.asn1.dvcs;
|
|
|
|
import java.math.BigInteger;
|
|
import org.bouncycastle.asn1.ASN1Encodable;
|
|
import org.bouncycastle.asn1.ASN1EncodableVector;
|
|
import org.bouncycastle.asn1.ASN1Integer;
|
|
import org.bouncycastle.asn1.DERSequence;
|
|
import org.bouncycastle.asn1.DERTaggedObject;
|
|
import org.bouncycastle.asn1.x509.Extensions;
|
|
import org.bouncycastle.asn1.x509.GeneralName;
|
|
import org.bouncycastle.asn1.x509.GeneralNames;
|
|
import org.bouncycastle.asn1.x509.PolicyInformation;
|
|
import org.bouncycastle.util.BigIntegers;
|
|
|
|
/* loaded from: classes6.dex */
|
|
public class DVCSRequestInformationBuilder {
|
|
private static final int DEFAULT_VERSION = 1;
|
|
private static final int TAG_DATA_LOCATIONS = 3;
|
|
private static final int TAG_DVCS = 2;
|
|
private static final int TAG_EXTENSIONS = 4;
|
|
private static final int TAG_REQUESTER = 0;
|
|
private static final int TAG_REQUEST_POLICY = 1;
|
|
private GeneralNames dataLocations;
|
|
private GeneralNames dvcs;
|
|
private Extensions extensions;
|
|
private DVCSRequestInformation initialInfo;
|
|
private BigInteger nonce;
|
|
private PolicyInformation requestPolicy;
|
|
private DVCSTime requestTime;
|
|
private GeneralNames requester;
|
|
private final ServiceType service;
|
|
private int version;
|
|
|
|
public void setVersion(int i) {
|
|
if (this.initialInfo != null) {
|
|
throw new IllegalStateException("cannot change version in existing DVCSRequestInformation");
|
|
}
|
|
this.version = i;
|
|
}
|
|
|
|
public void setRequester(GeneralNames generalNames) {
|
|
this.requester = generalNames;
|
|
}
|
|
|
|
public void setRequester(GeneralName generalName) {
|
|
setRequester(new GeneralNames(generalName));
|
|
}
|
|
|
|
public void setRequestTime(DVCSTime dVCSTime) {
|
|
if (this.initialInfo != null) {
|
|
throw new IllegalStateException("cannot change request time in existing DVCSRequestInformation");
|
|
}
|
|
this.requestTime = dVCSTime;
|
|
}
|
|
|
|
public void setRequestPolicy(PolicyInformation policyInformation) {
|
|
if (this.initialInfo != null) {
|
|
throw new IllegalStateException("cannot change request policy in existing DVCSRequestInformation");
|
|
}
|
|
this.requestPolicy = policyInformation;
|
|
}
|
|
|
|
public void setNonce(BigInteger bigInteger) {
|
|
DVCSRequestInformation dVCSRequestInformation = this.initialInfo;
|
|
if (dVCSRequestInformation != null) {
|
|
if (dVCSRequestInformation.getNonce() == null) {
|
|
this.nonce = bigInteger;
|
|
} else {
|
|
byte[] byteArray = this.initialInfo.getNonce().toByteArray();
|
|
byte[] asUnsignedByteArray = BigIntegers.asUnsignedByteArray(bigInteger);
|
|
byte[] bArr = new byte[byteArray.length + asUnsignedByteArray.length];
|
|
System.arraycopy(byteArray, 0, bArr, 0, byteArray.length);
|
|
System.arraycopy(asUnsignedByteArray, 0, bArr, byteArray.length, asUnsignedByteArray.length);
|
|
this.nonce = new BigInteger(bArr);
|
|
}
|
|
}
|
|
this.nonce = bigInteger;
|
|
}
|
|
|
|
public void setExtensions(Extensions extensions) {
|
|
if (this.initialInfo != null) {
|
|
throw new IllegalStateException("cannot change extensions in existing DVCSRequestInformation");
|
|
}
|
|
this.extensions = extensions;
|
|
}
|
|
|
|
public void setDataLocations(GeneralNames generalNames) {
|
|
this.dataLocations = generalNames;
|
|
}
|
|
|
|
public void setDataLocations(GeneralName generalName) {
|
|
setDataLocations(new GeneralNames(generalName));
|
|
}
|
|
|
|
public void setDVCS(GeneralNames generalNames) {
|
|
this.dvcs = generalNames;
|
|
}
|
|
|
|
public void setDVCS(GeneralName generalName) {
|
|
setDVCS(new GeneralNames(generalName));
|
|
}
|
|
|
|
public DVCSRequestInformation build() {
|
|
ASN1EncodableVector aSN1EncodableVector = new ASN1EncodableVector();
|
|
int i = this.version;
|
|
if (i != 1) {
|
|
aSN1EncodableVector.add(new ASN1Integer(i));
|
|
}
|
|
aSN1EncodableVector.add(this.service);
|
|
BigInteger bigInteger = this.nonce;
|
|
if (bigInteger != null) {
|
|
aSN1EncodableVector.add(new ASN1Integer(bigInteger));
|
|
}
|
|
DVCSTime dVCSTime = this.requestTime;
|
|
if (dVCSTime != null) {
|
|
aSN1EncodableVector.add(dVCSTime);
|
|
}
|
|
int[] iArr = {0, 1, 2, 3, 4};
|
|
ASN1Encodable[] aSN1EncodableArr = {this.requester, this.requestPolicy, this.dvcs, this.dataLocations, this.extensions};
|
|
for (int i2 = 0; i2 < 5; i2++) {
|
|
int i3 = iArr[i2];
|
|
ASN1Encodable aSN1Encodable = aSN1EncodableArr[i2];
|
|
if (aSN1Encodable != null) {
|
|
aSN1EncodableVector.add(new DERTaggedObject(false, i3, aSN1Encodable));
|
|
}
|
|
}
|
|
return DVCSRequestInformation.getInstance(new DERSequence(aSN1EncodableVector));
|
|
}
|
|
|
|
public DVCSRequestInformationBuilder(ServiceType serviceType) {
|
|
this.version = 1;
|
|
this.service = serviceType;
|
|
}
|
|
|
|
public DVCSRequestInformationBuilder(DVCSRequestInformation dVCSRequestInformation) {
|
|
this.version = 1;
|
|
this.initialInfo = dVCSRequestInformation;
|
|
this.service = dVCSRequestInformation.getService();
|
|
this.version = dVCSRequestInformation.getVersion();
|
|
this.nonce = dVCSRequestInformation.getNonce();
|
|
this.requestTime = dVCSRequestInformation.getRequestTime();
|
|
this.requestPolicy = dVCSRequestInformation.getRequestPolicy();
|
|
this.dvcs = dVCSRequestInformation.getDVCS();
|
|
this.dataLocations = dVCSRequestInformation.getDataLocations();
|
|
}
|
|
}
|