Overview[1]#
Now, there is two ways we can go about actually using a token.The Old Way:#
This would be a typical way to handle tokens for an API, and if you’ve worked with any kind of API you’re probably familiar with this design:- Generate random session or token key
- Store payload data in a datastore
- Use session or token key to lookup the payload
With this in mind we can look at how token design and cryptography can lead us to a better architecture.
The Better Way: (This method is essentially the JSON Web Token)#
We can use encryption to have a token design that avoids database lookups entirely. Let’s start with the complete process and then we’ll review it in detail:- Minimize payload data. The payload should only contain minimal information, like user id, timestamps, and possibly other identification codes.
- Serialize the payload.
- Sign the payload. There are different ways to go about this, but it’s typically done with HMAC. (think JSON Web Signature)
- Encrypt payload (JWE) and Digital Signature (JWS) combo (provides Integrity and Confidentiality)
- Base64 encode the encryption result
Stateless, Scalable and Decoupled#
One of the biggest advantages of using tokens over cookies is the fact that token authentication is stateless. Each token contains all the data required to check its validity as well as to convey user information through claims thus making it self-contained. The server is then responsible only to sign tokens on a successful login request and verify that incoming tokens are valid. In fact, the issuing of tokens can also be handled using Third-party Identity Providers and then the server only needs to verify the validity of the token.For all this we basically just need a Software library with a generate token and a parse token methods. There are 3 obvious benefits from this design:
- No database lookups
- No storage requirements for most tokens
- Constant-time token parsing
- CORS enabled token-based approach makes it trivial to expose APIs to different services and domains.
- Mobile Devices and cookies do not mix well
- Ease of use when using Load Balancing and no Session Affinity
Additionally, using a Token-exchange method allows for Federation.
And there’s only two requirements to be able to parse the tokens correctly:
- Shared encryption and MAC keys between internal services
- Properly implemented crypto libraries
Revocation model & Logging Out#
One small issue is that Credential Revocation and Logout become problematic with this approach. Since we haven’t stored the token anywhere, how do we go about revoking its permission?To answer that let’s get some details about the data on a typical payload:
- User identification
- ID, name, avatarURL
- Token metadata
- issuedAt, expires, sessionID
A token like this has roughly the following characteristics:
- Around 220 bytes in size
- The payload data is encrypted
- Two secret keys are required to parse or generate the tokens. This protects against both spoofing and data leakage.
Now back to Logging Out. For most APIs, Revocation models is more of an edge case rather than a common task. It won’t matter much then that when using this design the Revocation model process is going to be a bit slower than usual. In brief, we’ll have to use a Back-channel Communication (e.g. a message queue) that will inform all our services that a specific token has been revoked. Each service must then store in memory (or in a fast data-store cache like Memcached or Redis) that the token has been revoked. It’s in fact much easier and faster to store only the revoked tokens rather than storing every single one. This way instead of checking if a token is valid we can just check if a payload has been de-authorized.
The process for token permission revocation and logout is therefore: (looks like OAuth 2.0 and use of the Revocation_endpoint)
- Propagate the de-authorization to nodes through a Back-channel Communication
- Wait for propagation to finish before responding
OpenID Connect Back-Channel Logout and OpenID Connect Front-Channel Logout are two standard methods for Revocation model and Logging Out!! Conclusion Carefully designing our approach to tokens can have significant effects on our overall API architecture. We started by seeing how any website can become an API through simple web scraping (the happy accident). We then reviewed how a front-desk architecture works like a gateway, and its pros and cons. Then we moved to a real Service-Oriented Architecture, and how a different way of designing tokens using some encryption techniques can lead to a new design completely free of database lookups.
More Information#
There might be more information for this subject on one of the following:- [#1] - Token Design for a Better API Architecture
- based on information obtained 2016-03-02