Name

Class javax.crypto.SecretKeyFactorySpi

Synopsis

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.

Class Definition

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);
}

See also

KeySpec, Provider, SecretKey, SecretKeyFactory

Get Java Security, 2nd Edition now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.