Identity and access management
Video 1: video1
SAML: video2
Oauth2 and OIDC: video3
Ultimate Guide of Identity and access management: here
OIDC or SAML, which is preferred choice for single sign on?
Both OpenID Connect (OIDC) and Security Assertion Markup Language (SAML) are widely used protocols for Single Sign-On (SSO) in modern web applications. However, the best protocol for SSO depends on the specific needs and requirements of the application and the organization using it.
OIDC is a modern, lightweight and flexible protocol that is designed to work well with modern web and mobile applications. It is built on top of OAuth 2.0, which makes it easier to integrate with APIs and microservices. It supports modern features such as JSON Web Tokens (JWT) and allows for more fine-grained control over access and authorization.
SAML, on the other hand, is an older and more established protocol that has been around for a longer time. It is widely used in enterprise environments and is well-suited for integrating with legacy systems. It provides strong security features such as message signing and encryption and allows for more control over user authentication.
In general, if you are building a new web or mobile application, and you have the flexibility to choose the protocol, OIDC may be a better choice due to its modern features and flexibility. However, if you are working in an enterprise environment and need to integrate with legacy systems, or if you need stronger security features such as message signing and encryption, SAML may be a better choice.
Comments
Post a Comment