May 1998
Intermediate to advanced
469 pages
14h 57m
English
Class javax.crypto.SecretKeyFactorySpi
This class is the Security Provider Interface for the
SecretKeyFactory class. To create a secret key
factory, make a subclass of this class and register your
implementation with an appropriate provider.
public abstract class javax.crypto.SecretKeyFactorySpi
extends java.lang.Object {
// Constructors
public SecretKeyFactorySpi();
// Protected Instance Methods
protected abstract SecretKey engineGenerateSecret(KeySpec);
protected abstract KeySpec engineGetKeySpec(SecretKey, Class);
protected abstract SecretKey engineTranslateKey(SecretKey);
}
KeySpec, Provider, SecretKey, SecretKeyFactory