Update cheatsheets

This commit is contained in:
ivuorinen
2026-01-09 00:22:15 +00:00
parent 4c849cfc8a
commit ffe393201e
18 changed files with 43 additions and 40 deletions

View File

@@ -10,12 +10,12 @@ source: https://github.com/tldr-pages/tldr.git
- Generate an RSA private key of 2048 bits, saving it to a specific file:
`openssl genpkey -algorithm rsa -pkeyopt rsa_keygen_bits:{{2048}} -out {{filename.key}}`
`openssl genpkey -algorithm rsa -pkeyopt rsa_keygen_bits:{{2048}} -out {{path/to/private.key}}`
- Generate an elliptic curve private key using the curve `prime256v1`, saving it to a specific file:
`openssl genpkey -algorithm EC -pkeyopt ec_paramgen_curve:{{prime256v1}} -out {{filename.key}}`
`openssl genpkey -algorithm EC -pkeyopt ec_paramgen_curve:{{prime256v1}} -out {{path/to/private.key}}`
- Generate an `ED25519` elliptic curve private key, saving it to a specific file:
`openssl genpkey -algorithm {{ED25519}} -out {{filename.key}}`
`openssl genpkey -algorithm {{ED25519}} -out {{path/to/private.key}}`