Key Generation
Specific cryptographic key generation algorithms are available with the plugin,
harnessing the OpenSSL implementation included in Unreal Engine's codebase.
Ed25519
Generate Crypto Key (Ed25519) Generates a new Ed25519 keypair. This function requires no inputs, however
there is an optional input for Password 1. The password used for private key encryption is encoded as UTF8.
Leaving the Password field empty (which is the default behavior), will leave the key unencrypted.

If successful, returns two byte arrays containing the generated public 2 and private 3 keys encoded as PEM.
RSA
Generate Crypto Key (RSA) Generates a new RSA keypair. This function requires no inputs,
however there are two optional inputs:
Key Size1 : Integer, size of theRSAkey (Set to 2048 by default).Password2 : UTF-8 String, a pass-phrase used to encrypt the generated key.
Leaving the Password field empty (which is the default behavior), will leave the key unencrypted.

If successful, returns two byte arrays containing the generated public 3 and private 4 keys encoded as PEM.