0.0.17 • Published 4 years ago

dexie-easy-encrypt v0.0.17

Weekly downloads
4
License
ISC
Repository
github
Last release
4 years ago

dexie-easy-encrypt

Easy, unopinionated, table encryption middleware for Dexie

npm version

Installation

$ npm i -S dexie-easy-encrypt

Advantages

  • Zero dependencies
  • Encryptor dependency injected
  • Hides all non index / primary-key fields in encrypted tables
  • Provides on the fly encrypt/decrypt of Dexie table data

Usage

Call the middleware before opening the db

import {encryption} from './encryption' // see example below

const db = new Dexie('DatabaseName');
const tables = ['friends']

middleware({ db, encryption, tables }).then(() => {
  db.version(1).stores({
    friends: '++id, name, age',
  });
})

Encryption example

You can use whatever encryption library you like. To do so, create a wrapper similar to this one which conforms to the required interface. The only important thing is that you pass in an object with encrypt and decrypt methods. How you choose to create a salt/password/object/library or whatever is completely up to you so that you can integrate with your already existing encryption methods.

const sjcl = require('sjcl');

const password = 'PuttingPasswordsInCodeIsATerribleIdeaButThisIsADemo!DoNotDoThisAtHome!!!';

export const encryption = {
  encrypt: values => sjcl.encrypt(password, JSON.stringify(values)),
  decrypt: data => JSON.parse(sjcl.decrypt(password, data)),
};

Then pass the encryption into the middleware like so

middleware({ db, encryption, tables });

Test example

A full example is given in the unit tests in index.test.js

Caveats

  • For security, we remove any non index/primary-key fields from the passed object to be encrypted, this means that objects passed into table.add will be modified by the middleware, the middleware is not pure. please clone objects before passing to table.add.

License

ISC Licensed


Acknowledgement

This plugin is inspired by the awesome dexie-encrypted plugin.

We chose to go our own path because we wanted to use a different encryption method and did not want users to be able to view our object structure. We also had some issues integrating dexie-encrypted with cypress, due to the reliance on typeson and typeson-registry. Cypress does work on its own, but not with our sympress plugin.

However, if you require the additional features that dexie-encrypted provides, such as whitelisting/blacklisting individual object fields per table, then we highly advise you to go that route.

0.0.17

4 years ago

0.0.15

4 years ago

0.0.16

4 years ago

0.0.14

4 years ago

0.0.13

4 years ago

0.0.12

4 years ago

0.0.11

4 years ago

0.0.10

4 years ago

0.0.9

4 years ago

0.0.1

4 years ago