Releases: Planifica/encryption
Releases · Planifica/encryption
v0.0.5
Add support for encrypting the profile
of a Meteor.users
document.
You can encrypt the users collection just like any other collection like so:
// define fields to be encrypted
var fields = ['profile.test'];
// init encryption on collection Messages
MessagesEncryption = new CollectionEncryption(Meteor.users, fields);