May 2001
Intermediate to advanced
618 pages
20h 50m
English
Class javax.crypto.SecretKeyFactorySpi
This class is the service 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. Because it is a JCE
engine, it must be deployed in a specially signed jar file.
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
|
Read now
Unlock full access