blob: d281fb35bd9fad5a70035213a135e074e661825e [file] [log] [blame]
package org.bouncycastle.eac.jcajce;
import java.security.KeyFactory;
import java.security.NoSuchAlgorithmException;
class DefaultEACHelper
implements EACHelper
{
public KeyFactory createKeyFactory(String type)
throws NoSuchAlgorithmException
{
return KeyFactory.getInstance(type);
}
}