148 lines
5.3 KiB
Java
148 lines
5.3 KiB
Java
|
package org.jmrtd.lds.icao;
|
||
|
|
||
|
import java.io.IOException;
|
||
|
import java.io.InputStream;
|
||
|
import java.io.OutputStream;
|
||
|
import java.util.ArrayList;
|
||
|
import java.util.Collection;
|
||
|
import java.util.HashSet;
|
||
|
import java.util.Iterator;
|
||
|
import java.util.List;
|
||
|
import java.util.Set;
|
||
|
import java.util.logging.Level;
|
||
|
import java.util.logging.Logger;
|
||
|
import org.bouncycastle.asn1.ASN1EncodableVector;
|
||
|
import org.bouncycastle.asn1.ASN1Encoding;
|
||
|
import org.bouncycastle.asn1.ASN1InputStream;
|
||
|
import org.bouncycastle.asn1.ASN1Set;
|
||
|
import org.bouncycastle.asn1.DLSet;
|
||
|
import org.jmrtd.lds.ActiveAuthenticationInfo;
|
||
|
import org.jmrtd.lds.ChipAuthenticationInfo;
|
||
|
import org.jmrtd.lds.ChipAuthenticationPublicKeyInfo;
|
||
|
import org.jmrtd.lds.DataGroup;
|
||
|
import org.jmrtd.lds.SecurityInfo;
|
||
|
import org.jmrtd.lds.TerminalAuthenticationInfo;
|
||
|
|
||
|
/* loaded from: classes6.dex */
|
||
|
public class DG14File extends DataGroup {
|
||
|
private static final Logger LOGGER = Logger.getLogger("org.jmrtd");
|
||
|
private static final long serialVersionUID = -3536507558193769953L;
|
||
|
private Set<SecurityInfo> securityInfos;
|
||
|
|
||
|
public DG14File(Collection<SecurityInfo> collection) {
|
||
|
super(110);
|
||
|
if (collection == null) {
|
||
|
throw new IllegalArgumentException("Null securityInfos");
|
||
|
}
|
||
|
this.securityInfos = new HashSet(collection);
|
||
|
}
|
||
|
|
||
|
public DG14File(InputStream inputStream) throws IOException {
|
||
|
super(110, inputStream);
|
||
|
}
|
||
|
|
||
|
@Override // org.jmrtd.lds.AbstractTaggedLDSFile
|
||
|
public void readContent(InputStream inputStream) throws IOException {
|
||
|
this.securityInfos = new HashSet();
|
||
|
ASN1Set aSN1Set = (ASN1Set) new ASN1InputStream(inputStream).readObject();
|
||
|
for (int i = 0; i < aSN1Set.size(); i++) {
|
||
|
try {
|
||
|
SecurityInfo securityInfo = SecurityInfo.getInstance(aSN1Set.getObjectAt(i).toASN1Primitive());
|
||
|
if (securityInfo == null) {
|
||
|
LOGGER.warning("Skipping this unsupported SecurityInfo");
|
||
|
} else {
|
||
|
this.securityInfos.add(securityInfo);
|
||
|
}
|
||
|
} catch (Exception e) {
|
||
|
LOGGER.log(Level.WARNING, "Skipping Security Info", (Throwable) e);
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
@Override // org.jmrtd.lds.AbstractTaggedLDSFile
|
||
|
public void writeContent(OutputStream outputStream) throws IOException {
|
||
|
ASN1EncodableVector aSN1EncodableVector = new ASN1EncodableVector();
|
||
|
Iterator<SecurityInfo> it = this.securityInfos.iterator();
|
||
|
while (it.hasNext()) {
|
||
|
aSN1EncodableVector.add(it.next().getDERObject());
|
||
|
}
|
||
|
outputStream.write(new DLSet(aSN1EncodableVector).getEncoded(ASN1Encoding.DER));
|
||
|
}
|
||
|
|
||
|
public List<TerminalAuthenticationInfo> getTerminalAuthenticationInfos() {
|
||
|
ArrayList arrayList = new ArrayList();
|
||
|
for (SecurityInfo securityInfo : this.securityInfos) {
|
||
|
if (securityInfo instanceof TerminalAuthenticationInfo) {
|
||
|
arrayList.add((TerminalAuthenticationInfo) securityInfo);
|
||
|
}
|
||
|
}
|
||
|
return arrayList;
|
||
|
}
|
||
|
|
||
|
public List<ChipAuthenticationInfo> getChipAuthenticationInfos() {
|
||
|
ArrayList arrayList = new ArrayList();
|
||
|
for (SecurityInfo securityInfo : this.securityInfos) {
|
||
|
if (securityInfo instanceof ChipAuthenticationInfo) {
|
||
|
ChipAuthenticationInfo chipAuthenticationInfo = (ChipAuthenticationInfo) securityInfo;
|
||
|
arrayList.add(chipAuthenticationInfo);
|
||
|
if (chipAuthenticationInfo.getKeyId() == null) {
|
||
|
break;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
return arrayList;
|
||
|
}
|
||
|
|
||
|
public List<ChipAuthenticationPublicKeyInfo> getChipAuthenticationPublicKeyInfos() {
|
||
|
ArrayList arrayList = new ArrayList();
|
||
|
for (SecurityInfo securityInfo : this.securityInfos) {
|
||
|
if (securityInfo instanceof ChipAuthenticationPublicKeyInfo) {
|
||
|
arrayList.add((ChipAuthenticationPublicKeyInfo) securityInfo);
|
||
|
}
|
||
|
}
|
||
|
return arrayList;
|
||
|
}
|
||
|
|
||
|
public List<ActiveAuthenticationInfo> getActiveAuthenticationInfos() {
|
||
|
ArrayList arrayList = new ArrayList();
|
||
|
for (SecurityInfo securityInfo : this.securityInfos) {
|
||
|
if (securityInfo instanceof ActiveAuthenticationInfo) {
|
||
|
arrayList.add((ActiveAuthenticationInfo) securityInfo);
|
||
|
}
|
||
|
}
|
||
|
return arrayList;
|
||
|
}
|
||
|
|
||
|
@Override // org.jmrtd.lds.DataGroup, org.jmrtd.lds.AbstractTaggedLDSFile
|
||
|
public String toString() {
|
||
|
StringBuilder sb = new StringBuilder("DG14File [");
|
||
|
sb.append(this.securityInfos.toString());
|
||
|
sb.append("]");
|
||
|
return sb.toString();
|
||
|
}
|
||
|
|
||
|
public boolean equals(Object obj) {
|
||
|
if (obj == null || !obj.getClass().equals(getClass())) {
|
||
|
return false;
|
||
|
}
|
||
|
DG14File dG14File = (DG14File) obj;
|
||
|
Set<SecurityInfo> set = this.securityInfos;
|
||
|
if (set == null) {
|
||
|
return dG14File.securityInfos == null;
|
||
|
}
|
||
|
Set<SecurityInfo> set2 = dG14File.securityInfos;
|
||
|
if (set2 == null) {
|
||
|
return set == null;
|
||
|
}
|
||
|
return set.equals(set2);
|
||
|
}
|
||
|
|
||
|
public int hashCode() {
|
||
|
return (this.securityInfos.hashCode() * 5) + 41;
|
||
|
}
|
||
|
|
||
|
public Collection<SecurityInfo> getSecurityInfos() {
|
||
|
return this.securityInfos;
|
||
|
}
|
||
|
}
|