org.bouncycastle.operator.DigestCalculatorProvider.java Source code

Java tutorial

Introduction

Here is the source code for org.bouncycastle.operator.DigestCalculatorProvider.java

Source

package org.bouncycastle.operator;

import org.bouncycastle.asn1.x509.AlgorithmIdentifier;

/**
 * The base interface for a provider of DigestCalculator implementations.
 */
public interface DigestCalculatorProvider {
    DigestCalculator get(AlgorithmIdentifier digestAlgorithmIdentifier) throws OperatorCreationException;
}