what-the-bank/sources/org/bouncycastle/asn1/cmp/GenMsgContent.java

53 lines
1.7 KiB
Java
Raw Permalink Normal View History

2024-07-27 18:17:47 +07:00
package org.bouncycastle.asn1.cmp;
import org.bouncycastle.asn1.ASN1EncodableVector;
import org.bouncycastle.asn1.ASN1Object;
import org.bouncycastle.asn1.ASN1Primitive;
import org.bouncycastle.asn1.ASN1Sequence;
import org.bouncycastle.asn1.DERSequence;
/* loaded from: classes6.dex */
public class GenMsgContent extends ASN1Object {
private ASN1Sequence content;
public InfoTypeAndValue[] toInfoTypeAndValueArray() {
int size = this.content.size();
InfoTypeAndValue[] infoTypeAndValueArr = new InfoTypeAndValue[size];
for (int i = 0; i != size; i++) {
infoTypeAndValueArr[i] = InfoTypeAndValue.getInstance(this.content.getObjectAt(i));
}
return infoTypeAndValueArr;
}
@Override // org.bouncycastle.asn1.ASN1Object, org.bouncycastle.asn1.ASN1Encodable
public ASN1Primitive toASN1Primitive() {
return this.content;
}
public static GenMsgContent getInstance(Object obj) {
if (obj instanceof GenMsgContent) {
return (GenMsgContent) obj;
}
if (obj != null) {
return new GenMsgContent(ASN1Sequence.getInstance(obj));
}
return null;
}
public GenMsgContent(InfoTypeAndValue[] infoTypeAndValueArr) {
ASN1EncodableVector aSN1EncodableVector = new ASN1EncodableVector();
for (InfoTypeAndValue infoTypeAndValue : infoTypeAndValueArr) {
aSN1EncodableVector.add(infoTypeAndValue);
}
this.content = new DERSequence(aSN1EncodableVector);
}
public GenMsgContent(InfoTypeAndValue infoTypeAndValue) {
this.content = new DERSequence(infoTypeAndValue);
}
private GenMsgContent(ASN1Sequence aSN1Sequence) {
this.content = aSN1Sequence;
}
}