com.dyadicsec.provider.LIMAKeyFactory Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of unbound-java-provider Show documentation
Show all versions of unbound-java-provider Show documentation
This is a collection of JAVA libraries that implement Unbound cryptographic classes for JAVA provider, PKCS11 wrapper, cryptoki, and advapi
package com.dyadicsec.provider;
import java.security.KeyFactorySpi;
import java.security.PublicKey;
import java.security.PrivateKey;
import java.security.Key;
import java.security.InvalidKeyException;
import java.security.spec.InvalidKeySpecException;
import java.security.spec.KeySpec;
/**
* Created by valery.osheter on 21-Mar-17.
*/
public class LIMAKeyFactory extends KeyFactorySpi {
@Override
protected PublicKey engineGeneratePublic(KeySpec keySpec) throws InvalidKeySpecException
{
return null;
}
@Override
protected PrivateKey engineGeneratePrivate(KeySpec keySpec) throws InvalidKeySpecException
{
return null;
}
@Override
protected T engineGetKeySpec(Key key, Class keySpec) throws InvalidKeySpecException
{
return null;
}
@Override
protected Key engineTranslateKey(Key key) throws InvalidKeyException
{
return null;
}
}