rsa_generate_keypair_mem()

 
Generates an RSA keypair, returning the public and private keys in variables, and encrypting the private key with passphrase.
Syntax
rsa_generate_keypair_mem( pubkey var, privkey var, bits, e, passphrase )
Returns 1 on success, 0 on error.
  • pubkey = The variable which receives the generated public key
  • privkey = The variable which receives the generated private key
  • bits = The RSA modulus size, in bits
  • e = The public key exponent. Must be an odd number, typically 3, 17 or 65537
  • passphrase = The passphrase used to encrypt the private key
User Annotations: rsa_generate_keypair_mem