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

DigestDerivationFunction.java « crypto « spongycastle « org « java « main « src « core - gitlab.com/quite/humla-spongycastle.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
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();
}