copay/js/plugins/EncryptedInsightStorage.js

38 lines
1.2 KiB
JavaScript
Raw Normal View History

var cryptoUtil = require('../util/crypto');
var InsightStorage = require('./InsightStorage');
var inherits = require('inherits');
function EncryptedInsightStorage(config) {
InsightStorage.apply(this, [config]);
}
inherits(EncryptedInsightStorage, InsightStorage);
EncryptedInsightStorage.prototype.getItem = function(name, callback) {
2014-10-28 13:11:09 -07:00
var key = cryptoUtil.kdf(this.password + this.email);
2014-10-27 06:49:25 -07:00
InsightStorage.prototype.getItem.apply(this, [name,
function(err, body) {
2014-10-28 11:20:43 -07:00
if (err) {
return callback(err);
}
2014-10-27 06:49:25 -07:00
var decryptedJson = cryptoUtil.decrypt(key, body);
if (!decryptedJson) {
return callback('PNOTFOUND');
2014-10-27 06:49:25 -07:00
}
return callback(null, decryptedJson);
}
2014-10-27 06:49:25 -07:00
]);
};
EncryptedInsightStorage.prototype.setItem = function(name, value, callback) {
2014-10-28 13:11:09 -07:00
var key = cryptoUtil.kdf(this.password + this.email);
var record = cryptoUtil.encrypt(key, value);
InsightStorage.prototype.setItem.apply(this, [name, record, callback]);
};
2014-10-27 06:49:25 -07:00
EncryptedInsightStorage.prototype.removeItem = function(name, callback) {
2014-10-28 13:11:09 -07:00
var key = cryptoUtil.kdf(this.password + this.email);
2014-10-27 06:49:25 -07:00
InsightStorage.prototype.removeItem.apply(this, [name, callback]);
};
module.exports = EncryptedInsightStorage;