Name

Class java.security.AlgorithmParameters

Description

This class represents a set of parameters for a specific algorithm. Subclasses of this class can be used with the algorithm-specific initialization methods of KeyPairGenerator and Cipher.

Class Definition

public class java.security.AlgorithmParameters {

  // Class Methods
  public static final AlgorithmParameters getInstance(String);
  public static final AlgorithmParameters getInstance(String, String);

  // Instance Methods
  protected AlgorithmParameters(AlgorithmParametersSpi, Provider,
	 String);
  public final String getAlgorithm();
  public final Provider getProvider();
  public final void init(AlgorithmParameterSpec);
  public final void init(byte[]);
  public final void init(byte[], String);
  public final AlgorithmParameterSpec getParameterSpec(Class);
  public final byte[] getEncoded();
  public final byte[] getEncoded(String);
  public final String toString();
}

See Also

KeyPairGenerator

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.