13 lines
351 B
Java
13 lines
351 B
Java
|
package org.bouncycastle.crypto.tls;
|
||
|
|
||
|
import java.io.IOException;
|
||
|
|
||
|
/* loaded from: classes6.dex */
|
||
|
public interface TlsCipher {
|
||
|
byte[] decodeCiphertext(long j, short s, byte[] bArr, int i, int i2) throws IOException;
|
||
|
|
||
|
byte[] encodePlaintext(long j, short s, byte[] bArr, int i, int i2) throws IOException;
|
||
|
|
||
|
int getPlaintextLimit(int i);
|
||
|
}
|