Git Product home page Git Product logo

who-are-you's Introduction

who-are-you

Build Status

Authentication module for connect using a private public key scheme.

It reads a series of http headers and authorize (or not) the caller to access the API.

Usage:

  • Provide the client with a private and public key.
  • Create names (or use the defaults) for the http headers the client will use to make the request.
  • Choice a public value that will be used to generate the hash with the private key.
  • At the moment it uses sha1 to generate the (hash) token.

Ex:

Given the keys:

  • apiKey: 90ijUhj88uY
  • secretKey: ppKJHnmm09Iu564ghfB=

And using the default custom http headers:

The client should send a request with the following headers:

x-api-key: 90ijUhj88uY
x-request-time: '1357169907984'
x-token: 'a001880c10e2a61231311b1b56cecd98c71a7fe4'

The hash is calculated (in node) using the crypto module.

var hash = crypto.createHmac('sha1', 'ppKJHnmm09Iu564ghfB=')
    .update('1357169907984')
    .digest('hex');

On the server application you can add the module as usual:

var whoareyou = require('whoareyou');
server.use(whoareyou.privatePublicKey(accountStore, null));

If you want to use custom headers use an options argument as this:

var whoareyou = require('whoareyou');
var options = {
  "apiKey": "X-key",
  "dateTime": "X-date",
  "token": "X-hash"
};
server.use(whoareyou.privatePublicKey(accountStore, options));

The accountStore is expected to have one method get(apiKey, cb) the callback takes two arguments and error and an account object. The account object is expected to have at least one property secretKey that contains exactly that.

The middleware will add two properties to the request authenticated a boolean indicating if the authentication have been succesful and currentAccount that contains a clone of the account object returned by the accountStore.get method.

who-are-you's People

Contributors

hgarcia avatar

Watchers

 avatar James Cloos avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.