blob: 7f159c6aae4887fe944e825b3e72c07c69be67f1 [file] [log] [blame]
package org.bouncycastle.pkcs;
import org.bouncycastle.asn1.x509.AlgorithmIdentifier;
import org.bouncycastle.operator.MacCalculator;
import org.bouncycastle.operator.OperatorCreationException;
public interface PKCS12MacCalculatorBuilder
{
MacCalculator build(char[] password)
throws OperatorCreationException;
AlgorithmIdentifier getDigestAlgorithmIdentifier();
}