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

9 lines
269 B
Java

package org.bouncycastle.crypto;
/* loaded from: classes6.dex */
public interface DerivationFunction {
int generateBytes(byte[] bArr, int i, int i2) throws DataLengthException, IllegalArgumentException;
void init(DerivationParameters derivationParameters);
}