Interface AsymmetricCipherKeyPairGenerator


public interface AsymmetricCipherKeyPairGenerator
interface that a public/private key pair generator should conform to.
  • Method Details

    • init

      void init(KeyGenerationParameters param)
      intialise the key pair generator.
      Parameters:
      param - the parameters the key pair is to be initialised with.
    • generateKeyPair

      AsymmetricCipherKeyPair generateKeyPair()
      return an AsymmetricCipherKeyPair containing the generated keys.
      Returns:
      an AsymmetricCipherKeyPair containing the generated keys.