Coder Social home page Coder Social logo

metawa / browser-passworder Goto Github PK

View Code? Open in Web Editor NEW

This project forked from metamask/browser-passworder

0.0 0.0 0.0 82 KB

A simple browserifiable module for encrypting and decrypting JSON-serializable objects with a password.

License: ISC License

JavaScript 22.02% HTML 5.98% TypeScript 72.00%

browser-passworder's Introduction

Browser Passworder CircleCI

A simple module for encrypting & decrypting Javascript objects with a password in the browser.

Serializes the encrypted payload as a string of text for easy storage.

Uses browser native crypto to be the lightest possible module you can have, with the most vetted internals you could ask for (the real guts here are implemented by the browser provider).

Installation

You need to have node.js installed.

yarn install browser-passworder

Usage

var passworder = require('browser-passworder')

var secrets = { coolStuff: 'all', ssn: 'livin large' }
var password = 'hunter55'

passworder.encrypt(password, secrets)
.then(function(blob) {
  return passworder.decrypt(password, blob)
})
.then(function(result) {
  assert.deepEqual(result, secrets)
})

There are also some more advanced internal methods you can choose to use, but that's the basic version of it.

The most advanced alternate usage would be if you want to cache the password-derived key to speed up performance for many encryptions/decryptions with the same password.

Details

The serialized text is stored as a JSON blob that includes two base64-encoded fields, data and iv, neither of which you need to worry about.

The data is encrypted using the AES-GCM algorithm. It is salted with the result of crypto.getRandomValues(), and the encryption vector is generated the same way.

Running Tests

If modules are not installed, first be sure to run:

yarn

Then to activate the test suite:

yarn test

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.