63 lines
2.2 KiB
Java
63 lines
2.2 KiB
Java
package org.bouncycastle.asn1.esf;
|
|
|
|
import java.io.IOException;
|
|
import org.bouncycastle.asn1.ASN1Encodable;
|
|
import org.bouncycastle.asn1.ASN1EncodableVector;
|
|
import org.bouncycastle.asn1.ASN1Encoding;
|
|
import org.bouncycastle.asn1.ASN1Object;
|
|
import org.bouncycastle.asn1.ASN1ObjectIdentifier;
|
|
import org.bouncycastle.asn1.ASN1Primitive;
|
|
import org.bouncycastle.asn1.ASN1Sequence;
|
|
import org.bouncycastle.asn1.DERSequence;
|
|
|
|
/* loaded from: classes6.dex */
|
|
public class OtherRevRefs extends ASN1Object {
|
|
private ASN1ObjectIdentifier otherRevRefType;
|
|
private ASN1Encodable otherRevRefs;
|
|
|
|
@Override // org.bouncycastle.asn1.ASN1Object, org.bouncycastle.asn1.ASN1Encodable
|
|
public ASN1Primitive toASN1Primitive() {
|
|
ASN1EncodableVector aSN1EncodableVector = new ASN1EncodableVector();
|
|
aSN1EncodableVector.add(this.otherRevRefType);
|
|
aSN1EncodableVector.add(this.otherRevRefs);
|
|
return new DERSequence(aSN1EncodableVector);
|
|
}
|
|
|
|
public ASN1Encodable getOtherRevRefs() {
|
|
return this.otherRevRefs;
|
|
}
|
|
|
|
public ASN1ObjectIdentifier getOtherRevRefType() {
|
|
return this.otherRevRefType;
|
|
}
|
|
|
|
public static OtherRevRefs getInstance(Object obj) {
|
|
if (obj instanceof OtherRevRefs) {
|
|
return (OtherRevRefs) obj;
|
|
}
|
|
if (obj != null) {
|
|
return new OtherRevRefs(ASN1Sequence.getInstance(obj));
|
|
}
|
|
return null;
|
|
}
|
|
|
|
private OtherRevRefs(ASN1Sequence aSN1Sequence) {
|
|
if (aSN1Sequence.size() != 2) {
|
|
StringBuilder sb = new StringBuilder("Bad sequence size: ");
|
|
sb.append(aSN1Sequence.size());
|
|
throw new IllegalArgumentException(sb.toString());
|
|
}
|
|
this.otherRevRefType = new ASN1ObjectIdentifier(((ASN1ObjectIdentifier) aSN1Sequence.getObjectAt(0)).getId());
|
|
try {
|
|
this.otherRevRefs = ASN1Primitive.fromByteArray(aSN1Sequence.getObjectAt(1).toASN1Primitive().getEncoded(ASN1Encoding.DER));
|
|
} catch (IOException unused) {
|
|
throw new IllegalStateException();
|
|
}
|
|
}
|
|
|
|
public OtherRevRefs(ASN1ObjectIdentifier aSN1ObjectIdentifier, ASN1Encodable aSN1Encodable) {
|
|
this.otherRevRefType = aSN1ObjectIdentifier;
|
|
this.otherRevRefs = aSN1Encodable;
|
|
}
|
|
}
|