Skip to content

Encode and Decode of multipass tokens for openmrs atlas authentication

License

Notifications You must be signed in to change notification settings

ShekharReddy4/atlas-node-multipass

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

atlas-node-multipass

Build Status OpenMRS Talk OpenMRS IRC OpenMRS Telegram devDependencies Status devDependencies Status Downloads NPM version PRs Welcome

NPM

OpenMRS

OpenMRSID provides a mechanism for single sign-on known as Multipass. Multipass uses an AES encrypted JSON hash and node-multipass provides functions for encoding and decoding these tokens.

Installation

    npm install atlas-node-multipass

Usage

Multipass is constructed with two arguments: an API key and a site key.

  var Multipass = require('atlas-node-multipass');

  // Construct the Multipass encoder / decoder
  var multipass = new Multipass('API-KEY', 'SITE-KEY');

  // Encode a Multipass token
  var token = multipass.encode({ email: '[email protected]', name: 'test', expires: '2011-07-06 23:28:40Z' });

  // Decode a Multipass token
  var obj = multipass.decode(token);

encode(obj)

This function encodes the required obj argument. This argument is a JavaScript object and contains the data that you want to pass to Atlas.

This function will return a string. If an error occurs, the undefined will be returned.

decode(token)

This function decodes the required token argument. This argument is an encoded Multipass token and a JavaScript object is returned. If decoding is not successful, undefined is returned.

Copyright (c) 2012 David Wood [email protected]

About

Encode and Decode of multipass tokens for openmrs atlas authentication

Resources

License

Stars

Watchers

Forks

Packages