• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 package org.bouncycastle.operator;
2 
3 import org.bouncycastle.asn1.x509.AlgorithmIdentifier;
4 
5 public interface DigestCalculatorProvider
6 {
get(AlgorithmIdentifier digestAlgorithmIdentifier)7     DigestCalculator get(AlgorithmIdentifier digestAlgorithmIdentifier)
8         throws OperatorCreationException;
9 }
10