npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@snyk/sequelize-encrypted

v0.5.0

Published

encrypted sequelize fields

Downloads

247

Readme

sequelize-encrypted

Encrypted fields for Sequelize ORM

var Sequelize = require('sequelize');
var EncryptedField = require('sequelize-encrypted');

// secret key should be 32 bytes hex encoded (64 characters)
var key = process.env.SECRET_KEY_HERE;

var enc_fields = EncryptedField(Sequelize, key);

var User = sequelize.define('user', {
    name: Sequelize.STRING,
    encrypted: enc_fields.vault('encrypted'),

    // encrypted virtual fields
    private_1: enc_fields.field('private_1'),
    private_2: enc_fields.field('private_2')
})

var user = User.build();
user.private_1 = 'test';

How it works

The safe returns a sequelize BLOB field configured with getters/setters for decrypting and encrypting data. Encrypted JSON encodes the value you set and then encrypts this value before storing in the database.

Additionally, there are .field methods which return sequelize VIRTUAL fields that provide access to specific fields in the encrypted vault. It is recommended that these are used to get/set values versus using the encrypted field directly.

When calling .vault or .field you must specify the field name. This cannot be auto-detected by the module.

Generating a key

By default, AES-SHA256-CBC is used to encrypt data. You should generate a random key that is 32 bytes.

openssl rand -hex 32

Do not save this key with the source code, ideally you should use an environment variable or other configuration injection to provide the key during app startup.

Tips

You might find it useful to override the default toJSON implementation for your model to omit the encrypted field or other sensitive fields.

Key rotation

Extra keys, used for decryption only, can be passed as an optional extraDecryptionKeys field on an options object as the third argument to the EncryptedField constructor:

var Sequelize = require('sequelize');
var EncryptedField = require('sequelize-encrypted');

var encryption = EncryptedField(Sequelize, key, {
  extraDecryptionKeys: [ extraKey1, extraKey2 ]
});

This is useful when you want to rotate keys. New data is always encrypted with the key parameter, but data can also be decrypted and read with keys specified in extraDecryptionKeys.

Zero-downtime key rotation

To achieve a zero-downtime rotation from oldKey to newKey:

  1. Add newKey to the list of extraDecryptionKeys. This makes newKey available for decryption, but data is still encrypted with oldKey.
  2. Release the updated list of keys to all deployed nodes.
  3. Move oldKey to the list of extraDecryptionKeys, and make newKey the primary key. This leaves oldKey available for decryption, but data is now encrypted with newKey.
  4. Release the updated list of keys to all deployed nodes.
  5. Run a migration script similar to the following:
const Sequelize = require('sequelize');
const EncryptedField = require('sequelize-encrypted');

const sequelize = new Sequelize('postgres://postgres@db:5432/postgres');
const encryption = EncryptedField(Sequelize, newKey, {
    extraDecryptionKeys: [oldKey]
});

const MyModel = sequelize.define('myModel', {
    encrypted: encryption.vault('encrypted'),
    private_1: encryption.field('private_1'),
    private_2: encryption.field('private_2'),
});

const models = await MyModel.findAll();
models.each(model => {
    model.encrypted = model.encrypted;
    model.save();
});
  1. Remove oldKey from the list of extraDecryptionKeys.
  2. Release the updated list of keys to all deployed nodes.

License

MIT