0.1.1 • Published 10 years ago

consulate-simple-secrets v0.1.1

Weekly downloads
2
License
MIT
Repository
github
Last release
10 years ago

consulate-simple-secrets Build Status

simple-secrets token plugin for consulate

Usage

Just register consulate-simple-secrets as a plugin with your consulate server:

var consulate = require('consulate')
  , ss = require('consulate-simple-secrets');

var app = consulate();

app.plugin(ss({
  key: '3b6006d164bae955136a5befea9d0e4a50c22a2f7be5d65c2fd67752625deee3'
}));

This will return encrypted tokens with embedded token information:

{
  u: 'user-id',
  s: 42, // compressed scopes
  c: 'client-id',
  e: 1234 // expiration date
}

TODO explain how to extract token information

Advanced Usage

The options accepts a transform function to change the token information. This can be used to add extra fields in the token.

app.plugin(ss({
  transform: function(client, user, scope, availableScopes, tokenOpts, done) {
    // transform the tokenOpts here

    done(null, tokenOpts);
  }
}));

Tests

$ npm test
0.1.1

10 years ago

0.1.0

12 years ago