14 lines
416 B
Java
14 lines
416 B
Java
package org.bouncycastle.util.encoders;
|
|
|
|
import java.io.IOException;
|
|
import java.io.OutputStream;
|
|
|
|
/* loaded from: classes6.dex */
|
|
public interface Encoder {
|
|
int decode(String str, OutputStream outputStream) throws IOException;
|
|
|
|
int decode(byte[] bArr, int i, int i2, OutputStream outputStream) throws IOException;
|
|
|
|
int encode(byte[] bArr, int i, int i2, OutputStream outputStream) throws IOException;
|
|
}
|