blob: d912f00ffbcc10a44733be19b2be392565c6ecf7 [file] [log] [blame]
package org.bouncycastle.operator;
import org.bouncycastle.asn1.x509.AlgorithmIdentifier;
/**
* The base interface for a provider of DigestCalculator implementations.
*/
public interface DigestCalculatorProvider
{
DigestCalculator get(AlgorithmIdentifier digestAlgorithmIdentifier)
throws OperatorCreationException;
}