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

DigestCalculatorProvider.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: 55a7c1437f18a02af2d63ccf2d952249a14cb5a7 (plain)
1
2
3
4
5
6
7
8
9
package org.spongycastle.operator;

import org.spongycastle.asn1.x509.AlgorithmIdentifier;

public interface DigestCalculatorProvider
{
    DigestCalculator get(AlgorithmIdentifier digestAlgorithmIdentifier)
        throws OperatorCreationException;
}