diff options
| author | Marcus Eibrink-Lunzenauer <lunzenauer@elan-ev.de> | 2024-05-31 05:47:18 +0200 |
|---|---|---|
| committer | Marcus Eibrink-Lunzenauer <lunzenauer@elan-ev.de> | 2024-05-31 05:53:56 +0200 |
| commit | 200d0cc16c57958486ae6f339edc04b723fe3e8e (patch) | |
| tree | 2138d0ef98069a2e947d48976ecc64cb1968211d | |
| parent | d12dd2e0a0d84159b211b21296c93965ef09ec52 (diff) | |
Fix typo in 1a70031983001e10469b2d186dcf30de10aec3db.
Fixes #4239.
| -rw-r--r-- | cli/Commands/OAuth2/Keys.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/Commands/OAuth2/Keys.php b/cli/Commands/OAuth2/Keys.php index 93282ba..9132ad6 100644 --- a/cli/Commands/OAuth2/Keys.php +++ b/cli/Commands/OAuth2/Keys.php @@ -46,7 +46,7 @@ class Keys extends Command $this->storeKeyContentsToFile($encryptionKey, $this->generateEncryptionKey()); - $keys = RSA::createKey(4096); + $key = RSA::createKey(4096); $this->storeKeyContentsToFile($publicKey, (string) $key->getPublicKey()); $this->storeKeyContentsToFile($privateKey, (string) $key); |
