Home | History | Annotate | Download | only in operator
      1 package org.bouncycastle.operator;
      2 
      3 import org.bouncycastle.asn1.x509.AlgorithmIdentifier;
      4 
      5 /**
      6  * The base interface for a provider of DigestCalculator implementations.
      7  */
      8 public interface DigestCalculatorProvider
      9 {
     10     DigestCalculator get(AlgorithmIdentifier digestAlgorithmIdentifier)
     11         throws OperatorCreationException;
     12 }
     13