what-the-bank/sources/org/jmrtd/protocol/SecureMessagingWrapper.java

17 lines
470 B
Java
Raw Normal View History

2024-07-27 18:17:47 +07:00
package org.jmrtd.protocol;
import java.io.Serializable;
import javax.crypto.SecretKey;
import net.sf.scuba.smartcards.APDUWrapper;
/* loaded from: classes6.dex */
public abstract class SecureMessagingWrapper implements Serializable, APDUWrapper {
private static final long serialVersionUID = 4709645514566992414L;
public abstract SecretKey getEncryptionKey();
public abstract SecretKey getMACKey();
public abstract long getSendSequenceCounter();
}