Create a public-private key pair
generateKeyPair(publicKeyFileName, privateKeyFileName)Name of the file where the public key should be stored.
Name of the file where the private key should be stored.
Creates an RSA 4096-bit public-private key pair. The public key can be used to encrypt data, and only with the private key can the data be decrypted.
if (FALSE) {
generateKeyPair("public.key", "private.key")
}