001/000 parsing

This commit is contained in:
Mo Bitar
2016-12-25 00:05:21 -06:00
parent 7fa0c3e75a
commit e79bc29b89
4 changed files with 41 additions and 61 deletions

View File

@@ -72,6 +72,7 @@ angular.module('app.frontend')
Restangular.one("users/current").get().then(function(response){ Restangular.one("users/current").get().then(function(response){
var plain = response.plain(); var plain = response.plain();
var items = plain.items; var items = plain.items;
console.log("Current user items", items);
this.decryptItemsWithLocalKey(items); this.decryptItemsWithLocalKey(items);
items = this.mapResponseItemsToLocalModels(items); items = this.mapResponseItemsToLocalModels(items);
var user = _.omit(plain, ["items"]); var user = _.omit(plain, ["items"]);
@@ -87,6 +88,7 @@ angular.module('app.frontend')
this.getAuthParamsForEmail(email, function(authParams){ this.getAuthParamsForEmail(email, function(authParams){
Neeto.crypto.computeEncryptionKeysForUser(_.merge({email: email, password: password}, authParams), function(keys){ Neeto.crypto.computeEncryptionKeysForUser(_.merge({email: email, password: password}, authParams), function(keys){
this.setMk(keys.mk); this.setMk(keys.mk);
console.log("Signing in with", authParams, "pw", keys);
var request = Restangular.one("auth/sign_in"); var request = Restangular.one("auth/sign_in");
request.user = {password: keys.pw, email: email}; request.user = {password: keys.pw, email: email};
request.post().then(function(response){ request.post().then(function(response){
@@ -262,7 +264,7 @@ angular.module('app.frontend')
params.auth_hash = itemCopy.auth_hash; params.auth_hash = itemCopy.auth_hash;
} }
else { else {
params.content = forExportFile ? itemCopy.content : JSON.stringify(itemCopy.content); params.content = forExportFile ? itemCopy.content : "000" + Neeto.crypto.base64(JSON.stringify(itemCopy.content));
if(!forExportFile) { if(!forExportFile) {
params.enc_item_key = null; params.enc_item_key = null;
params.auth_hash = null; params.auth_hash = null;
@@ -475,7 +477,7 @@ angular.module('app.frontend')
var ek = Neeto.crypto.firstHalfOfKey(item_key); var ek = Neeto.crypto.firstHalfOfKey(item_key);
var ak = Neeto.crypto.secondHalfOfKey(item_key); var ak = Neeto.crypto.secondHalfOfKey(item_key);
var encryptedContent = Neeto.crypto.encryptText(JSON.stringify(item.content), ek); var encryptedContent = "001" + Neeto.crypto.encryptText(JSON.stringify(item.content), ek);
var authHash = Neeto.crypto.hmac256(encryptedContent, ak); var authHash = Neeto.crypto.hmac256(encryptedContent, ak);
item.content = encryptedContent; item.content = encryptedContent;
@@ -483,31 +485,6 @@ angular.module('app.frontend')
item.local_encryption_scheme = "1.0"; item.local_encryption_scheme = "1.0";
} }
this.encryptItems = function(items, masterKey) {
items.forEach(function(item){
this.encryptSingleItem(item, masterKey);
}.bind(this));
}
this.encryptSingleItemWithLocalKey = function(item) {
this.encryptSingleItem(item, this.retrieveMk());
}
this.encryptItemsWithLocalKey = function(items) {
this.encryptItems(items, this.retrieveMk());
}
this.encryptNonPublicItemsWithLocalKey = function(items) {
var nonpublic = items.filter(function(item){
return !item.isPublic() && !item.pending_share;
})
this.encryptItems(nonpublic, this.retrieveMk());
}
this.decryptSingleItemWithLocalKey = function(item) {
this.decryptSingleItem(item, this.retrieveMk());
}
this.decryptSingleItem = function(item, masterKey) { this.decryptSingleItem = function(item, masterKey) {
var item_key = Neeto.crypto.decryptText(item.enc_item_key, masterKey); var item_key = Neeto.crypto.decryptText(item.enc_item_key, masterKey);
@@ -519,14 +496,18 @@ angular.module('app.frontend')
return; return;
} }
var content = Neeto.crypto.decryptText(item.content, ek); var content = Neeto.crypto.decryptText(item.content.substring(3, item.content.length), ek);
item.content = content; item.content = content;
} }
this.decryptItems = function(items, masterKey) { this.decryptItems = function(items, masterKey) {
items.forEach(function(item){ items.forEach(function(item){
if(item.enc_item_key && typeof item.content === 'string') { if(item.content.substring(0, 3) == "001" && item.enc_item_key) {
// is encrypted
this.decryptSingleItem(item, masterKey); this.decryptSingleItem(item, masterKey);
} else {
// is base64 encoded
item.content = Neeto.crypto.base64Decode(item.content.substring(3, item.content.length))
} }
}.bind(this)); }.bind(this));
} }
@@ -538,7 +519,7 @@ angular.module('app.frontend')
this.reencryptAllItemsAndSave = function(user, newMasterKey, oldMasterKey, callback) { this.reencryptAllItemsAndSave = function(user, newMasterKey, oldMasterKey, callback) {
var items = user.filteredItems(); var items = user.filteredItems();
items.forEach(function(item){ items.forEach(function(item){
if(item.enc_item_key && typeof item.content === 'string') { if(item.content.substring(0, 3) == "001" && item.enc_item_key) {
// first decrypt item_key with old key // first decrypt item_key with old key
var item_key = Neeto.crypto.decryptText(item.enc_item_key, oldMasterKey); var item_key = Neeto.crypto.decryptText(item.enc_item_key, oldMasterKey);
// now encrypt item_key with new key // now encrypt item_key with new key

View File

@@ -45,6 +45,14 @@ class SNCrypto {
return key.substring(key.length/2, key.length); return key.substring(key.length/2, key.length);
} }
base64(text) {
return CryptoJS.enc.Utf8.parse(text).toString(CryptoJS.enc.Base64)
}
base64Decode(base64String) {
return CryptoJS.enc.Base64.parse(base64String).toString(CryptoJS.enc.Utf8)
}
sha256(text) { sha256(text) {
return CryptoJS.SHA256(text).toString(); return CryptoJS.SHA256(text).toString();
} }

View File

@@ -74,6 +74,16 @@ var SNCrypto = function () {
value: function secondHalfOfKey(key) { value: function secondHalfOfKey(key) {
return key.substring(key.length / 2, key.length); return key.substring(key.length / 2, key.length);
} }
}, {
key: 'base64',
value: function base64(text) {
return CryptoJS.enc.Utf8.parse(text).toString(CryptoJS.enc.Base64);
}
}, {
key: 'base64Decode',
value: function base64Decode(base64String) {
return CryptoJS.enc.Base64.parse(base64String).toString(CryptoJS.enc.Utf8);
}
}, { }, {
key: 'sha256', key: 'sha256',
value: function sha256(text) { value: function sha256(text) {
@@ -1564,6 +1574,7 @@ var User = function User(json_obj) {
Restangular.one("users/current").get().then(function (response) { Restangular.one("users/current").get().then(function (response) {
var plain = response.plain(); var plain = response.plain();
var items = plain.items; var items = plain.items;
console.log("Current user items", items);
this.decryptItemsWithLocalKey(items); this.decryptItemsWithLocalKey(items);
items = this.mapResponseItemsToLocalModels(items); items = this.mapResponseItemsToLocalModels(items);
var user = _.omit(plain, ["items"]); var user = _.omit(plain, ["items"]);
@@ -1578,6 +1589,7 @@ var User = function User(json_obj) {
this.getAuthParamsForEmail(email, function (authParams) { this.getAuthParamsForEmail(email, function (authParams) {
Neeto.crypto.computeEncryptionKeysForUser(_.merge({ email: email, password: password }, authParams), function (keys) { Neeto.crypto.computeEncryptionKeysForUser(_.merge({ email: email, password: password }, authParams), function (keys) {
this.setMk(keys.mk); this.setMk(keys.mk);
console.log("Signing in with", authParams, "pw", keys);
var request = Restangular.one("auth/sign_in"); var request = Restangular.one("auth/sign_in");
request.user = { password: keys.pw, email: email }; request.user = { password: keys.pw, email: email };
request.post().then(function (response) { request.post().then(function (response) {
@@ -1749,7 +1761,7 @@ var User = function User(json_obj) {
params.enc_item_key = itemCopy.enc_item_key; params.enc_item_key = itemCopy.enc_item_key;
params.auth_hash = itemCopy.auth_hash; params.auth_hash = itemCopy.auth_hash;
} else { } else {
params.content = forExportFile ? itemCopy.content : JSON.stringify(itemCopy.content); params.content = forExportFile ? itemCopy.content : "000" + Neeto.crypto.base64(JSON.stringify(itemCopy.content));
if (!forExportFile) { if (!forExportFile) {
params.enc_item_key = null; params.enc_item_key = null;
params.auth_hash = null; params.auth_hash = null;
@@ -1956,7 +1968,7 @@ var User = function User(json_obj) {
var ek = Neeto.crypto.firstHalfOfKey(item_key); var ek = Neeto.crypto.firstHalfOfKey(item_key);
var ak = Neeto.crypto.secondHalfOfKey(item_key); var ak = Neeto.crypto.secondHalfOfKey(item_key);
var encryptedContent = Neeto.crypto.encryptText(JSON.stringify(item.content), ek); var encryptedContent = "001" + Neeto.crypto.encryptText(JSON.stringify(item.content), ek);
var authHash = Neeto.crypto.hmac256(encryptedContent, ak); var authHash = Neeto.crypto.hmac256(encryptedContent, ak);
item.content = encryptedContent; item.content = encryptedContent;
@@ -1964,31 +1976,6 @@ var User = function User(json_obj) {
item.local_encryption_scheme = "1.0"; item.local_encryption_scheme = "1.0";
}; };
this.encryptItems = function (items, masterKey) {
items.forEach(function (item) {
this.encryptSingleItem(item, masterKey);
}.bind(this));
};
this.encryptSingleItemWithLocalKey = function (item) {
this.encryptSingleItem(item, this.retrieveMk());
};
this.encryptItemsWithLocalKey = function (items) {
this.encryptItems(items, this.retrieveMk());
};
this.encryptNonPublicItemsWithLocalKey = function (items) {
var nonpublic = items.filter(function (item) {
return !item.isPublic() && !item.pending_share;
});
this.encryptItems(nonpublic, this.retrieveMk());
};
this.decryptSingleItemWithLocalKey = function (item) {
this.decryptSingleItem(item, this.retrieveMk());
};
this.decryptSingleItem = function (item, masterKey) { this.decryptSingleItem = function (item, masterKey) {
var item_key = Neeto.crypto.decryptText(item.enc_item_key, masterKey); var item_key = Neeto.crypto.decryptText(item.enc_item_key, masterKey);
@@ -2000,14 +1987,18 @@ var User = function User(json_obj) {
return; return;
} }
var content = Neeto.crypto.decryptText(item.content, ek); var content = Neeto.crypto.decryptText(item.content.substring(3, item.content.length), ek);
item.content = content; item.content = content;
}; };
this.decryptItems = function (items, masterKey) { this.decryptItems = function (items, masterKey) {
items.forEach(function (item) { items.forEach(function (item) {
if (item.enc_item_key && typeof item.content === 'string') { if (item.content.substring(0, 3) == "001" && item.enc_item_key) {
// is encrypted
this.decryptSingleItem(item, masterKey); this.decryptSingleItem(item, masterKey);
} else {
// is base64 encoded
item.content = Neeto.crypto.base64Decode(item.content.substring(3, item.content.length));
} }
}.bind(this)); }.bind(this));
}; };
@@ -2019,7 +2010,7 @@ var User = function User(json_obj) {
this.reencryptAllItemsAndSave = function (user, newMasterKey, oldMasterKey, callback) { this.reencryptAllItemsAndSave = function (user, newMasterKey, oldMasterKey, callback) {
var items = user.filteredItems(); var items = user.filteredItems();
items.forEach(function (item) { items.forEach(function (item) {
if (item.enc_item_key && typeof item.content === 'string') { if (item.content.substring(0, 3) == "001" && item.enc_item_key) {
// first decrypt item_key with old key // first decrypt item_key with old key
var item_key = Neeto.crypto.decryptText(item.enc_item_key, oldMasterKey); var item_key = Neeto.crypto.decryptText(item.enc_item_key, oldMasterKey);
// now encrypt item_key with new key // now encrypt item_key with new key

File diff suppressed because one or more lines are too long