0.0.2 • Published 7 years ago

jstrong v0.0.2

Weekly downloads
1
License
ISC
Repository
github
Last release
7 years ago

JSTRONG

Addition to siphr explicitly for JSON objects.

Possible use cases:

  • web tokens
  • application level encryption before persisting to database

Installation

Using npm:

$ npm install --save jstrong

Usage

const jstrong = require('jstrong')(MY_SECRET_KEY);

const user = {
  id: 1, username: 'Homer Simpson', home_town: 'Springfield',
};

const strongUser = jstrong.stringify(user); // => '{"sFHg6oX9AMI7ejBsw==":"v7Shp9Tylui==",...}'

const plainUser = jstrong.parse(strongUser); // => { id: 1, ... }