mirror of
https://github.com/zitadel/zitadel.git
synced 2025-11-03 12:32:52 +00:00
docs: add traditional flag to openssl genrsa (#10524)
# Which Problems Are Solved
Zitadel tools expects a PKCS1 key, but OpenSSL provides a PKCS8 key.
# How the Problems Are Solved
Add `-traditional` to the documentation OpenSSL command, to generate a
PKCS1 key.
# Additional Changes
None
# Additional Context
Closes #7268
(cherry picked from commit ef799b9a7e)
This commit is contained in:
committed by
Livio Spring
parent
40d8f1fe00
commit
8adc205477
@@ -23,7 +23,7 @@ You can define any id for your user. This guide will assume it's `system-user-1`
|
||||
Generate an RSA private key with 2048 bit modulus:
|
||||
|
||||
```bash
|
||||
openssl genrsa -out system-user-1.pem 2048
|
||||
openssl genrsa -traditional -out system-user-1.pem 2048
|
||||
```
|
||||
|
||||
and export a public key from the newly created private key:
|
||||
|
||||
Reference in New Issue
Block a user