All Packages  Class Hierarchy  This Package  Previous  Next  Index

Interface iaik.interfaces.PKCS5KeyGenerator

public interface PKCS5KeyGenerator
ATTENTION: This is NOT the implementation from Sun. This class has been developed by IAIK according to the documentation publically available.

An interface to an object capable of generating RSA key pairs. The generator is first initialized, then used to generate one or more key pairs.

Users wishing to indicate the public exponent, and to generate a key pair suitable for use with the RSA algorithm typically

  1. Get a key pair generator for the RSA algorithm by calling the KeyPairGenerator getInstance method with "RSA" as its argument.

  2. Initialize the generator by casting the result to an RSAKeyPairGenerator and calling the initialize method from this RSAKeyPairGenerator interface.

  3. Generate one or more key pairs by calling the generateKeyPair method from the KeyPairGenerator class, as often as desired.

Note: it is not always necessary to do do algorithm-specific initialization for an RSA key pair generator. That is, it is not always necessary to call the initialize method in this interface. Algorithm-independent initialization using the initialize method in the KeyPairGenerator interface is all that is needed when you accept defaults for algorithm-specific parameters.

See Also:
KeyPairGenerator

Method Index

 o getIv()
 o initialize(String, byte[], int)
Initializes the key pair generator using

Methods

 o initialize
 public abstract void initialize(String password,
                                 byte saltValue[],
                                 int iterationCount) throws InvalidParameterException
Initializes the key pair generator using

 o getIv
 public abstract byte[] getIv()

All Packages  Class Hierarchy  This Package  Previous  Next  Index