FileDocCategorySizeDatePackage
AsymmetricCipherKeyPairGenerator.javaAPI DocAzureus 3.0.3.4579Tue Jun 08 05:12:58 BST 2004org.bouncycastle.crypto

AsymmetricCipherKeyPairGenerator.java

package org.bouncycastle.crypto;

/**
 * interface that a public/private key pair generator should conform to.
 */
public interface AsymmetricCipherKeyPairGenerator
{
    /**
     * intialise the key pair generator.
     *
     * @param the parameters the key pair is to be initialised with.
     */
    public void init(KeyGenerationParameters param);

    /**
     * return an AsymmetricCipherKeyPair containing the generated keys.
     *
     * @return an AsymmetricCipherKeyPair containing the generated keys.
     */
    public AsymmetricCipherKeyPair generateKeyPair();
}