
Security News
Crates.io Implements Trusted Publishing Support
Crates.io adds Trusted Publishing support, enabling secure GitHub Actions-based crate releases without long-lived API tokens.
passport-http-encrypted-token
Advanced tools
HTTP Encrypted Token authentication strategy for Passport and Node.j
HTTP Encrypted Token authentication strategy for Passport.
This module lets you authenticate HTTP requests using encrypted tokens in your Node.js applications. Encrypted_token is a custom authentication scheme used by Professional Information Business (PIB) group in Dow Jones. Encrypted tokens are typically used protect API endpoints, and are issued using Dow Jones Session server.
By plugging into Passport, encrypted token support can be easily and unobtrusively integrated into any application or framework that supports Connect-style middleware, including Express and Koa.
This work is based on passport-http-bearer.
$ npm install passport-http-encrypted-token
The HTTP Encrypted token authentication strategy authenticates users using a encrypted_token.
The strategy requires a verify
callback, which accepts that
credential and calls done
providing a user.
const EncryptedTokenStrategy = require('passport-http-encrypted-token').Strategy
passport.use(new EncryptedTokenStrategy(
function(token, done) {
User.findOne({ token: token }, function (err, user) {
if (err) { return done(err) }
if (!user) { return done(null, false) }
return done(null, user)
})
}
))
Use passport.authenticate()
, specifying the 'Encrypted_token'
strategy, to
authenticate requests. Requests containing encrypted tokens do not require session
support, so the session
option can be set to false
.
For example, as route middleware in an Express application:
app.get('/profile',
passport.authenticate('Encrypted_token', { session: false }),
function(req, res) {
res.json(req.user)
}
)
$ npm install
$ npm test
Use curl
to send an authenticated request.
$ curl -H "Authorization: Encrypted_token 123456789" http://127.0.0.1:3000/
Released 2016 by Hrusikesh Panda @ Dow Jones
FAQs
HTTP Encrypted Token authentication strategy for Passport and Node.j
We found that passport-http-encrypted-token demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Crates.io adds Trusted Publishing support, enabling secure GitHub Actions-based crate releases without long-lived API tokens.
Research
/Security News
Undocumented protestware found in 28 npm packages disrupts UI for Russian-language users visiting Russian and Belarusian domains.
Research
/Security News
North Korean threat actors deploy 67 malicious npm packages using the newly discovered XORIndex malware loader.