2025-03-14 21:59:59 -06:00
|
|
|
# openssl genpkey
|
|
|
|
|
|
|
|
|
|
> OpenSSL command to generate asymmetric key pairs.
|
2026-02-18 06:55:01 -07:00
|
|
|
> More information: <https://docs.openssl.org/master/man1/openssl-genpkey/>.
|
2025-03-14 21:59:59 -06:00
|
|
|
|
|
|
|
|
- Generate an RSA private key of 2048 bits, saving it to a specific file:
|
|
|
|
|
|
2026-02-18 06:55:01 -07:00
|
|
|
`openssl genpkey -algorithm rsa -pkeyopt rsa_keygen_bits:{{2048}} -out {{path/to/private.key}}`
|
2025-03-14 21:59:59 -06:00
|
|
|
|
|
|
|
|
- Generate an elliptic curve private key using the curve `prime256v1`, saving it to a specific file:
|
|
|
|
|
|
2026-02-18 06:55:01 -07:00
|
|
|
`openssl genpkey -algorithm EC -pkeyopt ec_paramgen_curve:{{prime256v1}} -out {{path/to/private.key}}`
|
2025-03-14 21:59:59 -06:00
|
|
|
|
|
|
|
|
- Generate an `ED25519` elliptic curve private key, saving it to a specific file:
|
|
|
|
|
|
2026-02-18 06:55:01 -07:00
|
|
|
`openssl genpkey -algorithm {{ED25519}} -out {{path/to/private.key}}`
|