blob: 180382d2c9dc30b1db5622bc0c6c33f03dceebc1 [file] [log] [blame]
package org.bouncycastle.crypto;
/**
* base interface for general purpose Digest based byte derivation functions.
*/
public interface DigestDerivationFunction
extends DerivationFunction
{
/**
* return the message digest used as the basis for the function
*/
public Digest getDigest();
}