package com.android.org.bouncycastle.operator.bc; import com.android.org.bouncycastle.asn1.x509.AlgorithmIdentifier; import com.android.org.bouncycastle.crypto.ExtendedDigest; import com.android.org.bouncycastle.operator.OperatorCreationException; public interface BcDigestProvider { ExtendedDigest get(AlgorithmIdentifier digestAlgorithmIdentifier) throws OperatorCreationException; }