• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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 {
get(AlgorithmIdentifier digestAlgorithmIdentifier)10     DigestCalculator get(AlgorithmIdentifier digestAlgorithmIdentifier)
11         throws OperatorCreationException;
12 }
13