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