what-the-bank/sources/org/bouncycastle/crypto/AsymmetricBlockCipher.java

13 lines
319 B
Java

package org.bouncycastle.crypto;
/* loaded from: classes6.dex */
public interface AsymmetricBlockCipher {
int getInputBlockSize();
int getOutputBlockSize();
void init(boolean z, CipherParameters cipherParameters);
byte[] processBlock(byte[] bArr, int i, int i2) throws InvalidCipherTextException;
}