blob: 8c42a63d4caa43f874d28fb1d66b6a3f0a3f232a [file] [log] [blame]
package org.bouncycastle.eac.jcajce;
import java.security.KeyFactory;
import java.security.NoSuchAlgorithmException;
import java.security.NoSuchProviderException;
interface EACHelper
{
KeyFactory createKeyFactory(String type)
throws NoSuchProviderException, NoSuchAlgorithmException;
}