TLS mutual authentication doubles down on HTTPS. Using this scheme your clients’ identity is proved by presenting certificates and proving ownership of a private key. This is a very potent tool and also a tradeoff.
All tags
The Web API Authentication guide, Signature Schemes
Friday, Feb 9, 2018 by Daniel Szpisjak
HTTP signature schemes provide integrity and authenticity on the application layer. Using them increase security but also incurs complexity.
The Web API Authentication guide, Bearer tokens
Friday, Jan 19, 2018 by Daniel Szpisjak
Lots of modern web application utilize bearer tokens. They are ideal for backend integration, but can also be used on the frontend.
The Web API Authentication guide, Cookies
Friday, Jan 12, 2018 by Daniel Szpisjak
Cookies are the de-facto authentication between browser and server. For a good reason, they can provide full-blown session management with low complexity.
The Web API Authentication guide, Digest Auth
Tuesday, Nov 14, 2017 by Daniel Szpisjak
HTTP Digest Authentication was designed to completely replace Basic Auth. It provides increased security at the cost of significant complexity…