summaryrefslogtreecommitdiffstats
path: root/bcpkix/src/main/java/org/bouncycastle/eac/jcajce/EACHelper.java
blob: 8c42a63d4caa43f874d28fb1d66b6a3f0a3f232a (plain)
1
2
3
4
5
6
7
8
9
10
11
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;
}