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

13 lines
316 B
Java
Raw Permalink Normal View History

2024-07-27 18:17:47 +07:00
package org.bouncycastle.crypto;
/* loaded from: classes6.dex */
public interface Wrapper {
String getAlgorithmName();
void init(boolean z, CipherParameters cipherParameters);
byte[] unwrap(byte[] bArr, int i, int i2) throws InvalidCipherTextException;
byte[] wrap(byte[] bArr, int i, int i2);
}