11 lines
304 B
Java
11 lines
304 B
Java
|
package org.jmrtd.cbeff;
|
||
|
|
||
|
import java.io.IOException;
|
||
|
import java.io.OutputStream;
|
||
|
import org.jmrtd.cbeff.BiometricDataBlock;
|
||
|
|
||
|
/* loaded from: classes6.dex */
|
||
|
public interface BiometricDataBlockEncoder<B extends BiometricDataBlock> {
|
||
|
void encode(B b, OutputStream outputStream) throws IOException;
|
||
|
}
|