1
0
mirror of https://github.com/bitwarden/browser.git synced 2024-10-19 07:35:48 +02:00
bitwarden-browser/src/services/cryptoService.js

353 lines
11 KiB
JavaScript
Raw Normal View History

function CryptoService(constantsService) {
this.constantsService = constantsService;
initCryptoService();
2016-09-03 06:03:13 +02:00
};
2016-09-02 06:50:57 +02:00
function initCryptoService() {
2016-09-03 06:03:13 +02:00
var _key,
_b64Key,
_keyHash,
_b64KeyHash,
_aes,
_aesWithMac;
2016-09-03 06:03:13 +02:00
sjcl.beware["CBC mode is dangerous because it doesn't protect message integrity."]();
2016-09-03 06:03:13 +02:00
CryptoService.prototype.setKey = function (key, callback) {
2016-09-02 06:50:57 +02:00
if (!callback || typeof callback !== 'function') {
throw 'callback function required';
}
var self = this;
2016-09-02 06:50:57 +02:00
_key = key;
chrome.storage.local.get(self.constantsService.lockOptionKey, function (obj) {
if (obj && (obj[self.constantsService.lockOptionKey] || obj[self.constantsService.lockOptionKey] === 0)) {
// if we have a lock option set, we do not store the key
callback();
return;
}
chrome.storage.local.set({
'key': sjcl.codec.base64.fromBits(key)
}, function () {
callback();
});
});
}
CryptoService.prototype.setKeyHash = function (keyHash, callback) {
if (!callback || typeof callback !== 'function') {
throw 'callback function required';
}
_keyHash = sjcl.codec.base64.toBits(keyHash);
2016-09-02 06:50:57 +02:00
chrome.storage.local.set({
'keyHash': keyHash
2016-09-02 06:50:57 +02:00
}, function () {
callback();
});
2016-09-03 06:03:13 +02:00
}
2016-09-02 06:50:57 +02:00
2016-09-03 06:03:13 +02:00
CryptoService.prototype.getKey = function (b64, callback) {
2016-09-02 06:50:57 +02:00
if (!callback || typeof callback !== 'function') {
throw 'callback function required';
}
if (b64 && b64 === true && _b64Key) {
callback(_b64Key);
return;
2016-09-02 06:50:57 +02:00
}
else if (!b64 && _key) {
callback(_key);
return;
}
else if (b64 && b64 === true && _key && !_b64Key) {
_b64Key = sjcl.codec.base64.fromBits(_key);
callback(_b64Key);
return;
2016-09-02 06:50:57 +02:00
}
var self = this;
chrome.storage.local.get(self.constantsService.lockOptionKey, function (obj) {
if (obj && (obj[self.constantsService.lockOptionKey] || obj[self.constantsService.lockOptionKey] === 0)) {
// if we have a lock option set, we do not try to fetch the storage key since it should not even be there
callback(null);
return;
2016-09-02 06:50:57 +02:00
}
chrome.storage.local.get('key', function (obj) {
if (obj && obj.key) {
_key = sjcl.codec.base64.toBits(obj.key);
if (b64 && b64 === true) {
_b64Key = obj.key;
callback(_b64Key);
return;
}
}
callback(_key);
});
});
};
CryptoService.prototype.getEncKey = function (callback) {
if (!callback || typeof callback !== 'function') {
throw 'callback function required';
}
this.getKey(false, function (key) {
callback(key.slice(0, 4));
});
};
CryptoService.prototype.getMacKey = function (callback) {
if (!callback || typeof callback !== 'function') {
throw 'callback function required';
}
this.getKey(false, function (key) {
callback(key.slice(4));
});
};
CryptoService.prototype.getKeyHash = function (b64, callback) {
if (!callback || typeof callback !== 'function') {
throw 'callback function required';
}
if (b64 && b64 === true && _b64KeyHash) {
callback(_b64KeyHash);
}
else if (!b64 && _keyHash) {
callback(_keyHash);
return;
}
else if (b64 && b64 === true && _keyHash && !_b64KeyHash) {
_b64KeyHash = sjcl.codec.base64.fromBits(_keyHash);
callback(_b64KeyHash);
return;
}
chrome.storage.local.get('keyHash', function (obj) {
if (obj && obj.keyHash) {
_keyHash = sjcl.codec.base64.toBits(obj.keyHash);
if (b64 && b64 === true) {
_b64KeyHash = obj.keyHash;
callback(_b64KeyHash);
return;
}
2016-09-02 06:50:57 +02:00
}
callback(_keyHash);
2016-09-02 06:50:57 +02:00
});
};
2016-09-03 06:03:13 +02:00
CryptoService.prototype.clearKey = function (callback) {
2016-09-02 06:50:57 +02:00
if (!callback || typeof callback !== 'function') {
throw 'callback function required';
}
_key = _b64Key = _aes = _aesWithMac = null;
2016-09-02 06:50:57 +02:00
chrome.storage.local.remove('key', function () {
callback();
});
};
CryptoService.prototype.clearKeyHash = function (callback) {
if (!callback || typeof callback !== 'function') {
throw 'callback function required';
}
_keyHash = _b64KeyHash = null;
chrome.storage.local.remove('keyHash', function () {
callback();
});
};
CryptoService.prototype.toggleKey = function (callback) {
if (!callback || typeof callback !== 'function') {
throw 'callback function required';
}
var self = this;
self.getKey(false, function (key) {
chrome.storage.local.get(self.constantsService.lockOptionKey, function (obj) {
if (obj && (obj[self.constantsService.lockOptionKey] || obj[self.constantsService.lockOptionKey] === 0)) {
// if we have a lock option set, clear the key
self.clearKey(function () {
_key = key;
callback();
return;
});
}
else {
// no lock option, so store the current key
self.setKey(key, function () {
callback();
return;
});
}
});
});
};
2016-09-03 06:03:13 +02:00
CryptoService.prototype.makeKey = function (password, salt, b64) {
2016-09-02 06:50:57 +02:00
var key = sjcl.misc.pbkdf2(password, salt, 5000, 256, null);
if (b64 && b64 === true) {
return sjcl.codec.base64.fromBits(key);
}
return key;
};
2016-09-05 06:03:49 +02:00
CryptoService.prototype.hashPassword = function (password, key, callback) {
this.getKey(false, function (storedKey) {
if (!key) {
key = storedKey;
}
2016-09-02 06:50:57 +02:00
2016-09-05 06:03:49 +02:00
if (!password || !key) {
throw 'Invalid parameters.';
}
2016-09-02 06:50:57 +02:00
2016-09-05 06:03:49 +02:00
var hashBits = sjcl.misc.pbkdf2(key, password, 1, 256, null);
callback(sjcl.codec.base64.fromBits(hashBits));
});
2016-09-02 06:50:57 +02:00
};
CryptoService.prototype.getAes = function (callback) {
if (!callback || typeof callback !== 'function') {
throw 'callback function required';
2016-09-02 06:50:57 +02:00
}
this.getKey(false, function (key) {
if (!_aes && key) {
_aes = new sjcl.cipher.aes(key);
}
callback(_aes);
});
2016-09-02 06:50:57 +02:00
};
CryptoService.prototype.getAesWithMac = function (callback) {
if (!callback || typeof callback !== 'function') {
throw 'callback function required';
}
this.getEncKey(function (encKey) {
if (!_aesWithMac && encKey) {
_aesWithMac = new sjcl.cipher.aes(encKey);
}
callback(_aesWithMac);
});
};
2016-09-17 05:47:50 +02:00
CryptoService.prototype.encrypt = function (plaintextValue) {
var self = this;
2016-09-17 05:47:50 +02:00
var deferred = Q.defer();
2016-09-02 06:50:57 +02:00
if (plaintextValue === null || plaintextValue === undefined) {
2016-09-17 05:47:50 +02:00
deferred.resolve(null);
}
else {
self.getKey(false, function (key) {
self.getEncKey(function (theEncKey) {
self.getMacKey(function (macKey) {
if (!key || !theEncKey || !macKey) {
throw 'Encryption key unavailable.';
}
2016-09-17 05:47:50 +02:00
// TODO: Turn on whenever ready to support encrypt-then-mac
var encKey = false ? theEncKey : key;
2016-09-17 05:47:50 +02:00
var response = {};
var params = {
mode: 'cbc',
iv: sjcl.random.randomWords(4, 10)
};
2016-09-17 05:47:50 +02:00
var ctJson = sjcl.encrypt(encKey, plaintextValue, params, response);
2016-09-17 05:47:50 +02:00
var ct = ctJson.match(/"ct":"([^"]*)"/)[1];
var iv = sjcl.codec.base64.fromBits(response.iv);
var cipherString = iv + '|' + ct;
// TODO: Turn on whenever ready to support encrypt-then-mac
if (false) {
var mac = computeMac(ct, response.iv, macKey);
cipherString = cipherString + '|' + mac;
}
var cs = new CipherString(cipherString);
deferred.resolve(cs);
});
});
2016-09-17 05:47:50 +02:00
});
}
2016-09-17 05:47:50 +02:00
return deferred.promise;
2016-09-02 06:50:57 +02:00
};
2016-09-17 05:47:50 +02:00
CryptoService.prototype.decrypt = function (cipherString) {
var deferred = Q.defer();
var self = this;
2016-09-02 06:50:57 +02:00
2016-09-05 17:05:27 +02:00
if (cipherString === null || cipherString === undefined || !cipherString.encryptedString) {
throw 'cannot decrypt nothing';
}
self.getMacKey(function (macKey) {
if (!macKey) {
throw 'MAC key unavailable.';
}
self.getAes(function (aes) {
self.getAesWithMac(function (aesWithMac) {
if (!aes || !aesWithMac) {
throw 'AES encryption unavailable.';
}
var ivBits = sjcl.codec.base64.toBits(cipherString.initializationVector);
var ctBits = sjcl.codec.base64.toBits(cipherString.cipherText);
2016-09-02 06:50:57 +02:00
var computedMac = null;
if (cipherString.mac) {
computedMac = computeMac(ctBits, ivBits, macKey);
if (computedMac !== cipherString.mac) {
console.error('MAC failed.');
deferred.reject('MAC failed.');
}
}
var decBits = sjcl.mode.cbc.decrypt(computedMac ? aesWithMac : aes, ctBits, ivBits, null);
var decValue = sjcl.codec.utf8String.fromBits(decBits);
deferred.resolve(decValue);
});
});
});
2016-09-17 05:47:50 +02:00
return deferred.promise;
2016-09-02 06:50:57 +02:00
};
function computeMac(ct, iv, macKey) {
if (typeof ct === 'string') {
ct = sjcl.codec.base64.toBits(ct);
}
if (typeof iv === 'string') {
iv = sjcl.codec.base64.toBits(iv);
}
var hmac = new sjcl.misc.hmac(macKey, sjcl.hash.sha256);
var bits = iv.concat(ct);
var mac = hmac.encrypt(bits);
return sjcl.codec.base64.fromBits(mac);
}
};