Reputation: 3379
I am using Azure AD Connect for authentication & permissioning with OpenId Connect.
I dont understand why I receive a JWT IdToken without signature and an AccessToken with signature from Azure. This is probably due to the "alg=none" property set for IdToken. But why not signing the IdToken too?
Upvotes: 2
Views: 409
Reputation: 2461
Are getting the ID Token directly from Azure's token endpoint? If so, the communication is secured and the host is authenticated via TLS/HTTPS so there's no need to sign or integrity protect the ID Token, which is intended only you (your client).
Upvotes: 4