what-the-bank/sources/org/bouncycastle/pqc/crypto/MessageEncryptor.java

14 lines
394 B
Java

package org.bouncycastle.pqc.crypto;
import org.bouncycastle.crypto.CipherParameters;
import org.bouncycastle.crypto.InvalidCipherTextException;
/* loaded from: classes6.dex */
public interface MessageEncryptor {
void init(boolean z, CipherParameters cipherParameters);
byte[] messageDecrypt(byte[] bArr) throws InvalidCipherTextException;
byte[] messageEncrypt(byte[] bArr);
}