You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When using configuration via native OIDC, it is currently not possible to use other encryption algorithms for ID Token than RS256.
In such case following error is returned during login : oidc: id token signed with unsupported algorithm, expected ["RS256"] got "RS512
This is related to the version of go-oidc v2.1.0. package used in ArgoCD.
Please upgrade go-oidc package to version v2.2.0 or higher which contains the following fix coreos/go-oidc#227
To Reproduce
Update argocd config with the following configuration
oidc.config: |
name: Native OIDC login
issuer: https://myserver/protocols/oidc
clientID: xxx-xxx
clientSecret: yyy
requestedScopes: ["default", "email" "openid", "profile"]
url: https://argocd.myserver.com/
And login using OIDC which supports other ID token algorithms than RS256
Version
v2.1.10
The text was updated successfully, but these errors were encountered:
Checklist:
argocd version
.Describe the bug
When using configuration via native OIDC, it is currently not possible to use other encryption algorithms for ID Token than RS256.
In such case following error is returned during login :
oidc: id token signed with unsupported algorithm, expected ["RS256"] got "RS512
This is related to the version of go-oidc v2.1.0. package used in ArgoCD.
Please upgrade go-oidc package to version v2.2.0 or higher which contains the following fix
coreos/go-oidc#227
To Reproduce
And login using OIDC which supports other ID token algorithms than RS256
Version
v2.1.10
The text was updated successfully, but these errors were encountered: