38 lines
1.6 KiB
Java
38 lines
1.6 KiB
Java
|
package org.jmrtd.protocol;
|
||
|
|
||
|
import java.util.logging.Logger;
|
||
|
import org.jmrtd.PassportService;
|
||
|
|
||
|
/* loaded from: classes6.dex */
|
||
|
public class TAProtocol {
|
||
|
private static final Logger LOGGER = Logger.getLogger("org.jmrtd");
|
||
|
private static final int TAG_CVCERTIFICATE_SIGNATURE = 24375;
|
||
|
private PassportService service;
|
||
|
private SecureMessagingWrapper wrapper;
|
||
|
|
||
|
public TAProtocol(PassportService passportService, SecureMessagingWrapper secureMessagingWrapper) {
|
||
|
this.service = passportService;
|
||
|
this.wrapper = secureMessagingWrapper;
|
||
|
}
|
||
|
|
||
|
/* JADX WARN: Code restructure failed: missing block: B:22:0x005e, code lost:
|
||
|
|
||
|
r9 = r2;
|
||
|
*/
|
||
|
/* JADX WARN: Code restructure failed: missing block: B:32:0x0095, code lost:
|
||
|
|
||
|
r2 = r1;
|
||
|
*/
|
||
|
/*
|
||
|
Code decompiled incorrectly, please refer to instructions dump.
|
||
|
To view partially-correct add '--show-bad-code' argument
|
||
|
*/
|
||
|
public org.jmrtd.protocol.TAResult doTA(org.jmrtd.cert.CVCPrincipal r9, java.util.List<org.jmrtd.cert.CardVerifiableCertificate> r10, java.security.PrivateKey r11, java.lang.String r12, org.jmrtd.protocol.CAResult r13, java.lang.String r14) throws net.sf.scuba.smartcards.CardServiceException {
|
||
|
/*
|
||
|
Method dump skipped, instructions count: 553
|
||
|
To view this dump add '--comments-level debug' option
|
||
|
*/
|
||
|
throw new UnsupportedOperationException("Method not decompiled: org.jmrtd.protocol.TAProtocol.doTA(org.jmrtd.cert.CVCPrincipal, java.util.List, java.security.PrivateKey, java.lang.String, org.jmrtd.protocol.CAResult, java.lang.String):org.jmrtd.protocol.TAResult");
|
||
|
}
|
||
|
}
|