Reputation: 123
I'm adding SSO feature to my service to allow customers login with their AD accounts. To provide this I use SAML component from componentpro.com What is correct way to perform security interaction:
Update: useful link about using certificates in SAML communication.
Upvotes: 2
Views: 136
Reputation: 5595
Normaly this is set up using a SAML metadata file that contains the IDP endpoints, keys etc. Your service then sends a similar metadata file with information about your service to the IDP
If the customer is the IDP then as above you usually provide them with a metadata file.
It is gennerally a bad idea to use the same key for signing and encryption. Read the discussions here and here
Upvotes: 1