Merge pull request #94 from ryanxcharles/feature/command-line-4
WIP: Command Line #4: encryption and decryption working for File
This commit is contained in:
commit
91c068ab38
4 changed files with 75 additions and 23 deletions
|
|
@ -2,7 +2,6 @@
|
||||||
var imports = require('soop').imports();
|
var imports = require('soop').imports();
|
||||||
var fs = imports.fs || require('fs');
|
var fs = imports.fs || require('fs');
|
||||||
var parent = imports.parent || require('./Base');
|
var parent = imports.parent || require('./Base');
|
||||||
var crypto = imports.crypto || require('crypto');
|
|
||||||
var CryptoJS = require('node-cryptojs-aes').CryptoJS;
|
var CryptoJS = require('node-cryptojs-aes').CryptoJS;
|
||||||
|
|
||||||
var passwords = [];
|
var passwords = [];
|
||||||
|
|
@ -15,8 +14,33 @@ function Storage(opts) {
|
||||||
}
|
}
|
||||||
Storage.parent = parent;
|
Storage.parent = parent;
|
||||||
|
|
||||||
|
Storage.prototype._encrypt = function(string) {
|
||||||
|
var encrypted = CryptoJS.AES.encrypt(string, passwords[0]);
|
||||||
|
var encryptedBase64 = encrypted.toString();
|
||||||
|
return encryptedBase64;
|
||||||
|
};
|
||||||
|
|
||||||
|
Storage.prototype._encryptObj = function(obj) {
|
||||||
|
var string = JSON.stringify(obj);
|
||||||
|
return this._encrypt(string);
|
||||||
|
};
|
||||||
|
|
||||||
|
Storage.prototype._decrypt = function(base64) {
|
||||||
|
var decrypted = CryptoJS.AES.decrypt(base64, passwords[0]);
|
||||||
|
var decryptedStr = decrypted.toString(CryptoJS.enc.Utf8);
|
||||||
|
return decryptedStr;
|
||||||
|
};
|
||||||
|
|
||||||
|
Storage.prototype._decryptObj = function(base64) {
|
||||||
|
var decryptedStr = this._decrypt(base64);
|
||||||
|
return JSON.parse(decryptedStr);
|
||||||
|
};
|
||||||
|
|
||||||
Storage.prototype.load = function(walletId, callback) {
|
Storage.prototype.load = function(walletId, callback) {
|
||||||
fs.readFile(walletId, function(err, data) {
|
var self = this;
|
||||||
|
fs.readFile(walletId, function(err, base64) {
|
||||||
|
var data = self._decryptObj(base64);
|
||||||
|
|
||||||
if (err) return callback(err);
|
if (err) return callback(err);
|
||||||
|
|
||||||
try {
|
try {
|
||||||
|
|
@ -32,10 +56,11 @@ Storage.prototype.load = function(walletId, callback) {
|
||||||
};
|
};
|
||||||
|
|
||||||
Storage.prototype.save = function(walletId, callback) {
|
Storage.prototype.save = function(walletId, callback) {
|
||||||
var data = JSON.stringify(this.data[walletId]);
|
var obj = this.data[walletId];
|
||||||
|
var encryptedBase64 = this._encryptObj(obj);
|
||||||
|
|
||||||
//TODO: update to use a queue to ensure that saves are made sequentially
|
//TODO: update to use a queue to ensure that saves are made sequentially
|
||||||
fs.writeFile(walletId, data, function(err) {
|
fs.writeFile(walletId, encryptedBase64, function(err) {
|
||||||
if (callback)
|
if (callback)
|
||||||
return callback(err);
|
return callback(err);
|
||||||
});
|
});
|
||||||
|
|
@ -105,16 +130,15 @@ Storage.prototype.setFromObj = function(walletId, obj, callback) {
|
||||||
this.save(walletId, callback);
|
this.save(walletId, callback);
|
||||||
};
|
};
|
||||||
|
|
||||||
Storage.prototype.setFromEncryptedObj = function(walletId) {
|
Storage.prototype.setFromEncryptedObj = function(walletId, base64, callback) {
|
||||||
//TODO: implement
|
var obj = this._decryptObj(base64);
|
||||||
|
this.setFromObj(walletId, obj, callback);
|
||||||
};
|
};
|
||||||
|
|
||||||
Storage.prototype.getEncryptedObj = function(walletId) {
|
Storage.prototype.getEncryptedObj = function(walletId) {
|
||||||
var data = JSON.stringify(this.data[walletId]);
|
var encryptedBase64 = this._encryptObj(this.data[walletId]);
|
||||||
var encrypted = CryptoJS.AES.encrypt(data, passwords[0]);
|
|
||||||
var hex = CryptoJS.enc.Hex.stringify(CryptoJS.enc.Base64.parse(encrypted.toString()));
|
|
||||||
|
|
||||||
return hex;
|
return encryptedBase64;
|
||||||
};
|
};
|
||||||
|
|
||||||
// remove all values
|
// remove all values
|
||||||
|
|
|
||||||
|
|
@ -25,12 +25,26 @@ Storage.prototype._setPassphrase = function(password) {
|
||||||
pps[this.__uniqueid] = password;
|
pps[this.__uniqueid] = password;
|
||||||
}
|
}
|
||||||
|
|
||||||
Storage.prototype._encrypt = function(data) {
|
Storage.prototype._encrypt = function(string) {
|
||||||
return CryptoJS.AES.encrypt(data, this._getPassphrase());
|
var encrypted = CryptoJS.AES.encrypt(string, this._getPassphrase());
|
||||||
|
var encryptedBase64 = encrypted.toString();
|
||||||
|
return encryptedBase64;
|
||||||
};
|
};
|
||||||
|
|
||||||
Storage.prototype._decrypt = function(encrypted) {
|
Storage.prototype._encryptObj = function(obj) {
|
||||||
return CryptoJS.AES.decrypt(encrypted, this._getPassphrase());
|
var string = JSON.stringify(obj);
|
||||||
|
return this._encrypt(string);
|
||||||
|
};
|
||||||
|
|
||||||
|
Storage.prototype._decrypt = function(base64) {
|
||||||
|
var decrypted = CryptoJS.AES.decrypt(base64, this._getPassphrase());
|
||||||
|
var decryptedStr = decrypted.toString(CryptoJS.enc.Utf8);
|
||||||
|
return decryptedStr;
|
||||||
|
};
|
||||||
|
|
||||||
|
Storage.prototype._decryptObj = function(base64) {
|
||||||
|
var decryptedStr = this._decrypt(base64);
|
||||||
|
return JSON.parse(decryptedStr);
|
||||||
};
|
};
|
||||||
|
|
||||||
Storage.prototype._read = function(k) {
|
Storage.prototype._read = function(k) {
|
||||||
|
|
@ -53,6 +67,17 @@ Storage.prototype._write = function(k,v) {
|
||||||
localStorage.setItem(k, v);
|
localStorage.setItem(k, v);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Storage.prototype.setFromObj = function(walletId, obj) {
|
||||||
|
for (var i in keys) {
|
||||||
|
var key = keys[0];
|
||||||
|
obj[key] = this.get(walletId, key);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
Storage.prototype.setFromEncryptedObj = function(walletId, base64) {
|
||||||
|
|
||||||
|
};
|
||||||
|
|
||||||
Storage.prototype.getEncryptedObj = function(walletId) {
|
Storage.prototype.getEncryptedObj = function(walletId) {
|
||||||
var keys = this._getWalletKeys();
|
var keys = this._getWalletKeys();
|
||||||
var obj = {};
|
var obj = {};
|
||||||
|
|
@ -62,9 +87,9 @@ Storage.prototype.getEncryptedObj = function(walletId) {
|
||||||
}
|
}
|
||||||
|
|
||||||
var str = JSON.stringify(obj);
|
var str = JSON.stringify(obj);
|
||||||
var hex = CryptoJS.enc.Hex.stringify(CryptoJS.enc.Base64.parse(this._encrypt(str).toString()));
|
var base64 = this._encrypt(str).toString();
|
||||||
|
|
||||||
return hex;
|
return base64;
|
||||||
};
|
};
|
||||||
|
|
||||||
module.exports = require('soop')(Storage);
|
module.exports = require('soop')(Storage);
|
||||||
|
|
|
||||||
|
|
@ -17,7 +17,9 @@ describe('Storage/File', function() {
|
||||||
var fs = {}
|
var fs = {}
|
||||||
fs.readFile = function(filename, callback) {
|
fs.readFile = function(filename, callback) {
|
||||||
filename.should.equal('myfilename');
|
filename.should.equal('myfilename');
|
||||||
callback();
|
var obj = {"test":"test"};
|
||||||
|
var encryptedStr = CryptoJS.AES.encrypt(JSON.stringify(obj), "password").toString();
|
||||||
|
callback(null, encryptedStr);
|
||||||
};
|
};
|
||||||
var Storage = require('soop').load('../js/models/storage/File.js', {fs: fs});
|
var Storage = require('soop').load('../js/models/storage/File.js', {fs: fs});
|
||||||
var storage = new Storage({password: 'password'});
|
var storage = new Storage({password: 'password'});
|
||||||
|
|
@ -156,15 +158,16 @@ describe('Storage/File', function() {
|
||||||
var obj = {test:'testval'};
|
var obj = {test:'testval'};
|
||||||
var data = JSON.stringify(obj);
|
var data = JSON.stringify(obj);
|
||||||
var encrypted = CryptoJS.AES.encrypt(data, 'password');
|
var encrypted = CryptoJS.AES.encrypt(data, 'password');
|
||||||
var hex = CryptoJS.enc.Hex.stringify(CryptoJS.enc.Base64.parse(encrypted.toString()));
|
var base64 = encrypted.toString();
|
||||||
|
|
||||||
var storage = new Storage({password: 'password'});
|
var storage = new Storage({password: 'password'});
|
||||||
storage.data['walletId'] = obj;
|
storage.data['walletId'] = obj;
|
||||||
|
|
||||||
var enc = storage.getEncryptedObj('walletId');
|
var enc = storage.getEncryptedObj('walletId');
|
||||||
enc.length.should.equal(96);
|
//enc.length.should.equal(96);
|
||||||
enc.slice(0,10).should.equal(hex.slice(0,10));
|
enc.length.should.be.greaterThan(10);
|
||||||
enc.slice(0,6).should.equal("53616c");
|
enc.slice(0,10).should.equal(base64.slice(0,10));
|
||||||
|
//enc.slice(0,6).should.equal("53616c");
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -53,8 +53,8 @@ if (typeof process === 'undefined' || !process.version) {
|
||||||
storage.set('walletId', 'test', 'testval');
|
storage.set('walletId', 'test', 'testval');
|
||||||
var obj = {test:'testval'};
|
var obj = {test:'testval'};
|
||||||
var encrypted = storage.getEncryptedObj('walletId');
|
var encrypted = storage.getEncryptedObj('walletId');
|
||||||
encrypted.length.should.equal(96);
|
encrypted.length.should.be.greaterThan(10);
|
||||||
encrypted.slice(0,6).should.equal("53616c");
|
//encrypted.slice(0,6).should.equal("53616c");
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue