Welcome to mirror list, hosted at ThFree Co, Russian Federation.

MacDerivationFunction.java « crypto « bouncycastle « org « java « main « src « core - gitlab.com/quite/humla-spongycastle.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 16198babe0b4caf6a318120b9c3a4eea8c5c47c1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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();
}