1package org.bouncycastle.operator;
2
3import org.bouncycastle.asn1.x509.AlgorithmIdentifier;
4
5public interface DigestCalculatorProvider
6{
7    DigestCalculator get(AlgorithmIdentifier digestAlgorithmIdentifier)
8        throws OperatorCreationException;
9}
10