All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.dyadicsec.provider.LIMAKeyFactory Maven / Gradle / Ivy

Go to download

This is a collection of JAVA libraries that implement Unbound cryptographic classes for JAVA provider, PKCS11 wrapper, cryptoki, and advapi

There is a newer version: 42761
Show newest version
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;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy