1package org.bouncycastle.operator.bc;
2
3import org.bouncycastle.asn1.x509.AlgorithmIdentifier;
4import org.bouncycastle.crypto.ExtendedDigest;
5import org.bouncycastle.operator.OperatorCreationException;
6
7public interface BcDigestProvider
8{
9    ExtendedDigest get(AlgorithmIdentifier digestAlgorithmIdentifier)
10        throws OperatorCreationException;
11}
12