mirror of
https://github.com/zitadel/zitadel.git
synced 2025-08-24 03:10:15 +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
This commit is contained in:
@@ -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