15 lines
374 B
Java
15 lines
374 B
Java
package org.bouncycastle.crypto;
|
|
|
|
/* loaded from: classes6.dex */
|
|
public interface StreamCipher {
|
|
String getAlgorithmName();
|
|
|
|
void init(boolean z, CipherParameters cipherParameters) throws IllegalArgumentException;
|
|
|
|
int processBytes(byte[] bArr, int i, int i2, byte[] bArr2, int i3) throws DataLengthException;
|
|
|
|
void reset();
|
|
|
|
byte returnByte(byte b);
|
|
}
|