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

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

import org.bouncycastle.asn1.x509.AlgorithmIdentifier;

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