Skip to content
Snippets Groups Projects
Commit 0c38c59b authored by Marcus Eibrink-Lunzenauer's avatar Marcus Eibrink-Lunzenauer
Browse files

Fix typo in 1a700319.

Fixes #4239.
parent d12dd2e0
No related branches found
No related tags found
No related merge requests found
Pipeline #24047 passed
...@@ -46,7 +46,7 @@ class Keys extends Command ...@@ -46,7 +46,7 @@ class Keys extends Command
$this->storeKeyContentsToFile($encryptionKey, $this->generateEncryptionKey()); $this->storeKeyContentsToFile($encryptionKey, $this->generateEncryptionKey());
$keys = RSA::createKey(4096); $key = RSA::createKey(4096);
$this->storeKeyContentsToFile($publicKey, (string) $key->getPublicKey()); $this->storeKeyContentsToFile($publicKey, (string) $key->getPublicKey());
$this->storeKeyContentsToFile($privateKey, (string) $key); $this->storeKeyContentsToFile($privateKey, (string) $key);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment