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

MacCalculatorProvider.java « operator « spongycastle « org « java « main « src « pkix - gitlab.com/quite/humla-spongycastle.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a30773f28ee43380a5ce67558ea5810d433742b0 (plain)
1
2
3
4
5
6
7
8
package org.spongycastle.operator;

import org.spongycastle.asn1.x509.AlgorithmIdentifier;

public interface MacCalculatorProvider
{
    public MacCalculator get(AlgorithmIdentifier algorithm);
}