Skip to content
Snippets Groups Projects
Commit 200d0cc1 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 #24068 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.
Finish editing this message first!
Please register or to comment