Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What are the differences between local Basic and Digest strategy in passportjs

Tags:

passport.js

I understand the difference between Passport.js' Basic and Digest authentication, but what is the difference between the local strategy and Basic or Digest? In all three, you enter a username and password. Is the Basic strategy a type of user & password authentication? Please clarify.

like image 336
Ritesh Mehandiratta Avatar asked Oct 04 '13 17:10

Ritesh Mehandiratta


People also ask

What is local strategy in passport?

passport-local is the strategy you would use if you are authenticating against a username and password stored 'locally' i.e. in the database of your app - 'local' means local to your application server, not local to the end user.

What is Passportjs?

What is Passport. js? Passport is authentication middleware for Node. js. As it's extremely flexible and modular, Passport can be unobtrusively dropped into any Express-based web application.

Is Passportjs open source?

Funding. This software is provided to you as open source, free of charge.


1 Answers

If I understand correctly, the differences between the Local, Basic and Digest strategies in Passport.js are subtle but important. Here's the rundown:

Local (passport-local)

Passport's local strategy is a simple username and password authentication scheme. It finds a given user's password from the username (or other identifier) and checks to see if they match. The main difference between the local strategy and the other two strategies is its use of persistent login sessions. This strategy should be used over SSL/TLS.

Basic (passport-http)

The Basic strategy implemented by Passport looks nearly identical to the local strategy, with one subtle difference. The basic strategy is to be used with API endpoints where the architecture is stateless. As a result, sessions are not required but can be used. This strategy should also use SSL/TLS. The session flag can be set like so:

app.get('/private', passport.authenticate('basic', { session: false }), function(req, res) {   res.json(req.user); }); 

Digest (passport-http)

The digest strategy is subtly different than the other two strategies in that it uses a special challenge-response paradigm so as to avoid sending the password in cleartext. This strategy would be a good solution when SSL/TLS wouldn't be available.

This is a good article on Basic vs. Digest: How to Authenticate APIs

Note: All three strategies make session support optional. The two passport-http strategies allow you to set the session flag while the Passport docs say this, regarding the passport-local strategy:

Note that enabling session support is entirely optional, though it is recommended for most applications.

like image 54
Glen Selle Avatar answered Sep 22 '22 01:09

Glen Selle