Replies: 1 comment 3 replies
-
for the record: the text in the spec refers to the |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
From my understanding,
OIDCCryptoPassphrase
value is used below to generate a SHA-256 symmetric key.https://github.com/zmartzone/mod_auth_openidc/blob/884c1250fb173e2956a3d1211df826e84c30a7bf/src/util.c#L135
Therefore, I believe a minimum length of 256 bits (32 bytes) is necessary for security reason.
Reference: https://openid.net/specs/openid-connect-core-1_0.html#SymmetricKeyEntropy
Also, since only Ascii code can be set, a minimum of 43 characters encoded with base64url is required instead of 32 characters.
Is my understanding correct?
Beta Was this translation helpful? Give feedback.
All reactions