deepcrypt
v2.0.4
Published
encrypt/decrypt js objects
Downloads
3
Readme
deepcrypt
Node.js library to encrypt object while maintaining object structure. The values are encrypted but the keys are left intact. Built to stuff encrypted objects into NoSQL databases like MongoDB.
install
npm install --save deepcrypt
usage
var { deepEncrypt, deepDecrypt } = require('deepcrypt')('secret$here')
deepDecrypt(
deepEncrypt({
your: "object",
goes: 'here'
})
)