Fixes import & export with new encryption
This commit is contained in:
parent
1b0f6836dc
commit
35bab383b0
12 changed files with 86 additions and 67 deletions
|
|
@ -1,6 +1,6 @@
|
|||
'use strict';
|
||||
|
||||
angular.module('copayApp.controllers').controller('HeadController', function($scope, $rootScope, notification, controllerUtils) {
|
||||
angular.module('copayApp.controllers').controller('HeadController', function($scope, $rootScope, $filter, notification, controllerUtils) {
|
||||
|
||||
$scope.username = $rootScope.iden ? $rootScope.iden.fullName || $rootScope.iden.email : 'undefined';
|
||||
$scope.hoverMenu = false;
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
'use strict';
|
||||
|
||||
angular.module('copayApp.controllers').controller('ImportController',
|
||||
function($scope, $rootScope, $location, controllerUtils, notification, isMobile, Compatibility) {
|
||||
function($scope, $rootScope, $location, controllerUtils, notification, isMobile, Compatibility, cryptoUtils) {
|
||||
|
||||
$rootScope.title = 'Import a backup';
|
||||
$scope.importStatus = 'Importing wallet - Reading backup...';
|
||||
|
|
@ -25,7 +25,7 @@ angular.module('copayApp.controllers').controller('ImportController',
|
|||
if ($scope.skipTxProposals)
|
||||
skipFields.push('txProposals');
|
||||
|
||||
$rootScope.iden.importWallet(encryptedObj, password, skipFields, function(err, w) {
|
||||
$rootScope.iden.importEncryptedWallet(encryptedObj, password, skipFields, function(err, w) {
|
||||
if (!w) {
|
||||
$scope.loading = false;
|
||||
notification.error('Error', err || 'Wrong password');
|
||||
|
|
|
|||
|
|
@ -35,6 +35,19 @@ Compatibility._getWalletIds = function(cb) {
|
|||
return cb(walletIds);
|
||||
};
|
||||
|
||||
/**
|
||||
* @param {string} encryptedWallet - base64-encoded encrypted wallet
|
||||
* @param {string} passphrase - base64-encoded passphrase
|
||||
* @returns {Object}
|
||||
*/
|
||||
Compatibility.importLegacy = function(encryptedWallet, passphrase) {
|
||||
var ret = Compatibility._decrypt(encryptedWallet, passphrase);
|
||||
if (!ret) return null;
|
||||
ret = ret.toString(CryptoJS.enc.Utf8);
|
||||
ret = JSON.parse(ret);
|
||||
return ret;
|
||||
};
|
||||
|
||||
/**
|
||||
* Decrypts using the CryptoJS library (unknown encryption schema)
|
||||
*
|
||||
|
|
|
|||
|
|
@ -207,13 +207,20 @@ Identity.prototype.toObj = function() {
|
|||
_.pick(this, 'version', 'fullName', 'password', 'email'));
|
||||
};
|
||||
|
||||
Identity.prototype.exportWithWalletInfo = function() {
|
||||
Identity.prototype.exportEncryptedWithWalletInfo = function(opts) {
|
||||
var crypto = opts.cryptoUtil || cryptoUtil;
|
||||
var key = crypto.kdf(this.password);
|
||||
return crypto.encrypt(key, this.exportWithWalletInfo);
|
||||
};
|
||||
|
||||
Identity.prototype.exportWithWalletInfo = function(opts) {
|
||||
return _.extend({
|
||||
wallets: _.map(this.wallets, function(wallet) {
|
||||
return wallet.toObj();
|
||||
})
|
||||
},
|
||||
_.pick(this, 'version', 'fullName', 'password', 'email'));
|
||||
_.pick(this, 'version', 'fullName', 'password', 'email')
|
||||
);
|
||||
};
|
||||
|
||||
/**
|
||||
|
|
@ -248,8 +255,8 @@ Identity.prototype.close = function(cb) {
|
|||
};
|
||||
|
||||
/**
|
||||
* @desc Imports a wallet from an encrypted base64 object
|
||||
* @param {string} base64 - the base64 encoded object
|
||||
* @desc Imports a wallet from an encrypted string
|
||||
* @param {string} cypherText - the encrypted object
|
||||
* @param {string} passphrase - passphrase to decrypt it
|
||||
* @param {string[]} opts.skipFields - fields to ignore when importing
|
||||
* @param {string[]} opts.salt -
|
||||
|
|
@ -257,12 +264,25 @@ Identity.prototype.close = function(cb) {
|
|||
* @param {string[]} opts.importFunction - for stubbing
|
||||
* @return {Wallet}
|
||||
*/
|
||||
Identity.prototype.importWallet = function(base64, password, opts, cb) {
|
||||
Identity.prototype.importEncryptedWallet = function(cypherText, password, opts, cb) {
|
||||
|
||||
var crypto = opts.cryptoUtil || cryptoUtil;
|
||||
// TODO set iter and salt using config.js
|
||||
var key = crypto.kdf(password);
|
||||
var obj = crypto.decrypt(key, cypherText);
|
||||
if (!obj) return cb(new Error('Could not decrypt'));
|
||||
try {
|
||||
obj = JSON.parse(obj);
|
||||
} catch (e) {
|
||||
return cb(new Error('Could not decrypt'));
|
||||
}
|
||||
return this.importWalletFromObj(obj, opts, cb)
|
||||
};
|
||||
|
||||
Identity.prototype.importWalletFromObj = function(obj, opts, cb) {
|
||||
var self = this;
|
||||
preconditions.checkArgument(password);
|
||||
preconditions.checkArgument(cb);
|
||||
var importFunction = opts.importWallet || Wallet.fromUntrustedObj;
|
||||
var crypto = opts.cryptoUtil || cryptoUtil;
|
||||
|
||||
var readOpts = {
|
||||
networkOpts: this.networkOpts,
|
||||
|
|
@ -270,12 +290,6 @@ Identity.prototype.importWallet = function(base64, password, opts, cb) {
|
|||
skipFields: opts.skipFields,
|
||||
};
|
||||
|
||||
// TODO set iter and salt using config.js
|
||||
var key = crypto.kdf(password);
|
||||
var obj = crypto.decrypt(key, base64);
|
||||
if (!obj) return cb(new Error('Could not decrypt'));
|
||||
|
||||
|
||||
var w = importFunction(obj, readOpts);
|
||||
if (!w) return cb(new Error('Could not decrypt'));
|
||||
|
||||
|
|
@ -303,6 +317,12 @@ Identity.prototype.closeWallet = function(wallet, cb) {
|
|||
});
|
||||
};
|
||||
|
||||
Identity.importFromEncryptedFullJson = function(str, password, opts, cb) {
|
||||
var crypto = opts.cryptoUtil || cryptoUtil;
|
||||
var key = crypto.kdf(password);
|
||||
return Identity.importFromFullJson(crypto.decript(key, str));
|
||||
};
|
||||
|
||||
Identity.importFromFullJson = function(str, password, opts, cb) {
|
||||
preconditions.checkArgument(str);
|
||||
var json;
|
||||
|
|
@ -320,7 +340,7 @@ Identity.importFromFullJson = function(str, password, opts, cb) {
|
|||
|
||||
json.wallets = json.wallets || {};
|
||||
async.map(json.wallets, function(walletData, callback) {
|
||||
iden.importWallet(wstr, password, opts, function(err, w) {
|
||||
iden.importEncryptedWallet(wstr, password, opts, function(err, w) {
|
||||
if (err) return callback(err);
|
||||
log.debug('Wallet ' + w.getId() + ' imported');
|
||||
callback();
|
||||
|
|
|
|||
|
|
@ -6,6 +6,7 @@ var preconditions = require('preconditions').singleton();
|
|||
var inherits = require('inherits');
|
||||
var events = require('events');
|
||||
var async = require('async');
|
||||
var cryptoUtil = require('../util/crypto');
|
||||
|
||||
var bitcore = require('bitcore');
|
||||
var bignum = bitcore.Bignum;
|
||||
|
|
@ -683,7 +684,6 @@ Wallet.prototype.getNetworkName = function() {
|
|||
};
|
||||
|
||||
/**
|
||||
* @desc
|
||||
* @return {bool}
|
||||
*/
|
||||
Wallet.prototype.isTestnet = function() {
|
||||
|
|
@ -2864,4 +2864,11 @@ Wallet.prototype.getTransactionHistory = function(cb) {
|
|||
}
|
||||
};
|
||||
|
||||
Wallet.prototype.exportEncrypted = function(password, opts) {
|
||||
opts = opts || {};
|
||||
var crypto = opts.cryptoUtil || cryptoUtil;
|
||||
var key = crypto.kdf(password);
|
||||
return crypto.encrypt(key, this.toObj());
|
||||
};
|
||||
|
||||
module.exports = Wallet;
|
||||
|
|
|
|||
|
|
@ -1,8 +1,9 @@
|
|||
'use strict';
|
||||
|
||||
|
||||
var BackupService = function(notification) {
|
||||
var BackupService = function($rootScope, notification, cryptoUtils) {
|
||||
this.$rootScope = $rootScope;
|
||||
this.notifications = notification;
|
||||
this.cryptoUtils = cryptoUtils;
|
||||
};
|
||||
|
||||
BackupService.prototype.getCopayer = function(wallet) {
|
||||
|
|
@ -40,11 +41,11 @@ BackupService.prototype._download = function(ew, walletName, filename) {
|
|||
};
|
||||
|
||||
BackupService.prototype.walletEncrypted = function(wallet) {
|
||||
return wallet.toEncryptedObj();
|
||||
return wallet.exportEncrypted(this.$rootScope.iden.password);
|
||||
}
|
||||
|
||||
BackupService.prototype.walletDownload = function(wallet) {
|
||||
var ew = wallet.toEncryptedObj();
|
||||
var ew = this.walletEncrypted(wallet);
|
||||
var walletName = wallet.getName();
|
||||
var copayerName = this.getCopayer(wallet);
|
||||
var filename = (copayerName ? copayerName + '-' : '') + walletName + '-keybackup.json.aes';
|
||||
|
|
@ -52,17 +53,14 @@ BackupService.prototype.walletDownload = function(wallet) {
|
|||
};
|
||||
|
||||
BackupService.prototype.profileEncrypted = function(iden) {
|
||||
return iden.toEncryptedObj();
|
||||
return iden.exportEncryptedWithWalletInfo(iden.password);
|
||||
}
|
||||
|
||||
BackupService.prototype.profileDownload = function(iden) {
|
||||
var ew = iden.toEncryptedObj();
|
||||
var name = iden.profile.getName();
|
||||
var ew = this.profileEncrypted(iden);
|
||||
var name = iden.fullName;
|
||||
var filename = name + '-profile.json';
|
||||
this._download(ew, name, filename)
|
||||
};
|
||||
|
||||
|
||||
|
||||
|
||||
angular.module('copayApp.services').service('backupService', BackupService);
|
||||
|
|
|
|||
5
js/services/compatibility.js
Normal file
5
js/services/compatibility.js
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
'use strict';
|
||||
|
||||
angular.module('copayApp.services').value('Compatibility', function() {
|
||||
return require('copay').Compatibility;
|
||||
});
|
||||
5
js/services/cryptoUtils.js
Normal file
5
js/services/cryptoUtils.js
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
'use strict';
|
||||
|
||||
angular.module('copayApp.services').factory('cryptoUtils', function() {
|
||||
return require('../util/crypto');
|
||||
});
|
||||
Loading…
Add table
Add a link
Reference in a new issue