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