Skip to content

Commit 683f9d5

Browse files
authored
Raise key-size from 2048 > 3072
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.
1 parent 4f14e0a commit 683f9d5

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,11 +61,11 @@ Because of the signing part, you need to create a public/private RSA key pair.
6161

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

64-
openssl genrsa -out cert/oidc_module.key 2048
64+
openssl genrsa -out cert/oidc_module.key 3072
6565

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

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

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

0 commit comments

Comments
 (0)