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