blob: 16198babe0b4caf6a318120b9c3a4eea8c5c47c1 [file] [log] [blame]
package org.bouncycastle.crypto;
/**
* base interface for general purpose Mac based byte derivation functions.
*/
public interface MacDerivationFunction
extends DerivationFunction
{
/**
* return the MAC used as the basis for the function
*/
public Mac getMac();
}