Name

Class javax.crypto.SecretKeyFactorySpi

Description

This class represents the implementation of a SecretKeyFactory. To create such an implementation, make a subclass of SecretKeyFactorySpi and define each of its methods.

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, SecretKey, SecretKeyFactory

Get Java Cryptography 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.