Package org.bouncycastle.crypto.internal
Interface DerivationFunction
-
- All Known Subinterfaces:
DigestDerivationFunction
,MacDerivationFunction
public interface DerivationFunction
base interface for general purpose byte derivation functions.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description int
generateBytes(byte[] out, int outOff, int len)
void
init(DerivationParameters param)
-
-
-
Method Detail
-
init
void init(DerivationParameters param)
-
generateBytes
int generateBytes(byte[] out, int outOff, int len) throws DataLengthException, java.lang.IllegalArgumentException
- Throws:
DataLengthException
java.lang.IllegalArgumentException
-
-