Welcome to mirror list, hosted at ThFree Co, Russian Federation.

EACHelper.java « jcajce « eac « bouncycastle « org « java « main « src « pkix - gitlab.com/quite/humla-spongycastle.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
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;
}