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:
Stefan Benz
2025-08-21 17:47:58 +02:00
committed by GitHub
parent cf02c4231a
commit ef799b9a7e

View File

@@ -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: