|
|
|
|
|
by shkkmo
2934 days ago
|
|
Our partners are not commercial SSO systems, nor do they all use commercial SSO systems. We looked at SAML and it didn't seem to be a good fit for our use case. It is overly complex for our needs. Instead we built a very small subset of what SAML allows, that is very easy to understand and allows our partners to use lightweight JWT libraries with simple APIs instead of trying to figure out how to get a complex SAML implementation to work with our flow. We didn't re-invent anything. We used an existing, simpler standard for one of it's intended use cases. Our implentation is < 100 lines of code (not including the JWT library which implements the standard). Edit: The relevant SAML flow is this: http://docs.oasis-open.org/security/saml/Post2.0/sstc-saml-t... But good luck finding good documentation on it. |
|
(Responding to edit)
I can only assume that the most widely-used flow in SAML, the dominant SSO protocol on the Internet, is better documented than the ad-hoc custom version of SAML you reimplemented with JWT. :)
I don't like SAML (I in fact hate it), but the problems I have with SAML are all shared by JWE/JWT! You are describing perhaps the one scenario in all of human experience where I might recommend that someone adopt an XMLDSIG protocol.