summaryrefslogtreecommitdiffstats
path: root/bcprov/src/main/java/org/bouncycastle/crypto/DigestDerivationFunction.java
blob: 180382d2c9dc30b1db5622bc0c6c33f03dceebc1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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();
}