aboutsummaryrefslogtreecommitdiffstats
path: root/libraries/spongycastle/core/src/main/java/org/spongycastle/crypto/DigestDerivationFunction.java
blob: 7ed0fe15d649a0e2537b3be8ecbc107d55c67af1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
package org.spongycastle.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();
}