Skip to content

Commit

Permalink
Raise key-size from 2048 > 3072
Browse files Browse the repository at this point in the history
Dutch government standards deem 2048 'okayish' and 3072+ 'good' .. Feel free to decline this PR, but I just thought it was time to raise the bar a bit.
  • Loading branch information
tvdijen authored May 29, 2024
1 parent 4f14e0a commit 683f9d5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,11 +61,11 @@ Because of the signing part, you need to create a public/private RSA key pair.

To generate the private key, you can run this command in the terminal:

openssl genrsa -out cert/oidc_module.key 2048
openssl genrsa -out cert/oidc_module.key 3072

If you want to provide a passphrase for your private key, run this command instead:

openssl genrsa -passout pass:myPassPhrase -out cert/oidc_module.key 2048
openssl genrsa -passout pass:myPassPhrase -out cert/oidc_module.key 3072

Now you need to extract the public key from the private key:

Expand Down

0 comments on commit 683f9d5

Please sign in to comment.