88 lines
2.7 KiB
Java
88 lines
2.7 KiB
Java
|
package org.bouncycastle.asn1.x509;
|
||
|
|
||
|
import org.bouncycastle.asn1.ASN1Integer;
|
||
|
import org.bouncycastle.asn1.ASN1Object;
|
||
|
import org.bouncycastle.asn1.ASN1Primitive;
|
||
|
import org.bouncycastle.asn1.ASN1Sequence;
|
||
|
import org.bouncycastle.asn1.ASN1TaggedObject;
|
||
|
import org.bouncycastle.asn1.DERBitString;
|
||
|
import org.bouncycastle.asn1.pkcs.PKCSObjectIdentifiers;
|
||
|
import org.bouncycastle.asn1.x500.X500Name;
|
||
|
|
||
|
/* loaded from: classes6.dex */
|
||
|
public class X509CertificateStructure extends ASN1Object implements X509ObjectIdentifiers, PKCSObjectIdentifiers {
|
||
|
ASN1Sequence seq;
|
||
|
DERBitString sig;
|
||
|
AlgorithmIdentifier sigAlgId;
|
||
|
TBSCertificateStructure tbsCert;
|
||
|
|
||
|
@Override // org.bouncycastle.asn1.ASN1Object, org.bouncycastle.asn1.ASN1Encodable
|
||
|
public ASN1Primitive toASN1Primitive() {
|
||
|
return this.seq;
|
||
|
}
|
||
|
|
||
|
public int getVersion() {
|
||
|
return this.tbsCert.getVersion();
|
||
|
}
|
||
|
|
||
|
public TBSCertificateStructure getTBSCertificate() {
|
||
|
return this.tbsCert;
|
||
|
}
|
||
|
|
||
|
public SubjectPublicKeyInfo getSubjectPublicKeyInfo() {
|
||
|
return this.tbsCert.getSubjectPublicKeyInfo();
|
||
|
}
|
||
|
|
||
|
public X500Name getSubject() {
|
||
|
return this.tbsCert.getSubject();
|
||
|
}
|
||
|
|
||
|
public Time getStartDate() {
|
||
|
return this.tbsCert.getStartDate();
|
||
|
}
|
||
|
|
||
|
public AlgorithmIdentifier getSignatureAlgorithm() {
|
||
|
return this.sigAlgId;
|
||
|
}
|
||
|
|
||
|
public DERBitString getSignature() {
|
||
|
return this.sig;
|
||
|
}
|
||
|
|
||
|
public ASN1Integer getSerialNumber() {
|
||
|
return this.tbsCert.getSerialNumber();
|
||
|
}
|
||
|
|
||
|
public X500Name getIssuer() {
|
||
|
return this.tbsCert.getIssuer();
|
||
|
}
|
||
|
|
||
|
public Time getEndDate() {
|
||
|
return this.tbsCert.getEndDate();
|
||
|
}
|
||
|
|
||
|
public static X509CertificateStructure getInstance(ASN1TaggedObject aSN1TaggedObject, boolean z) {
|
||
|
return getInstance(ASN1Sequence.getInstance(aSN1TaggedObject, z));
|
||
|
}
|
||
|
|
||
|
public static X509CertificateStructure getInstance(Object obj) {
|
||
|
if (obj instanceof X509CertificateStructure) {
|
||
|
return (X509CertificateStructure) obj;
|
||
|
}
|
||
|
if (obj != null) {
|
||
|
return new X509CertificateStructure(ASN1Sequence.getInstance(obj));
|
||
|
}
|
||
|
return null;
|
||
|
}
|
||
|
|
||
|
public X509CertificateStructure(ASN1Sequence aSN1Sequence) {
|
||
|
this.seq = aSN1Sequence;
|
||
|
if (aSN1Sequence.size() != 3) {
|
||
|
throw new IllegalArgumentException("sequence wrong size for a certificate");
|
||
|
}
|
||
|
this.tbsCert = TBSCertificateStructure.getInstance(aSN1Sequence.getObjectAt(0));
|
||
|
this.sigAlgId = AlgorithmIdentifier.getInstance(aSN1Sequence.getObjectAt(1));
|
||
|
this.sig = DERBitString.getInstance(aSN1Sequence.getObjectAt(2));
|
||
|
}
|
||
|
}
|