mirror of
https://github.com/bitwarden/browser.git
synced 2024-11-26 12:25:20 +01:00
dont append header if AesCbc256_B64 for compat.
This commit is contained in:
parent
1ce4b5443b
commit
2cc2057f88
@ -6,13 +6,23 @@ var CipherString = function () {
|
||||
this.initializationVector = null;
|
||||
this.mac = null;
|
||||
|
||||
if (arguments.length >= 2) {
|
||||
this.encryptedString = arguments[0] + '.' + arguments[1];
|
||||
var constants = chrome.extension.getBackgroundPage().constantsService;
|
||||
|
||||
if (arguments.length >= 2) {
|
||||
// ct and optional header
|
||||
if (arguments[0] === constants.encType.AesCbc256_B64) {
|
||||
this.encryptedString = arguments[1];
|
||||
}
|
||||
else {
|
||||
this.encryptedString = arguments[0] + '.' + arguments[1];
|
||||
}
|
||||
|
||||
// iv
|
||||
if (arguments.length > 2 && arguments[2]) {
|
||||
this.encryptedString += ('|' + arguments[2]);
|
||||
}
|
||||
|
||||
// mac
|
||||
if (arguments.length > 3 && arguments[3]) {
|
||||
this.encryptedString += ('|' + arguments[3]);
|
||||
}
|
||||
@ -33,8 +43,6 @@ var CipherString = function () {
|
||||
return;
|
||||
}
|
||||
|
||||
var constants = chrome.extension.getBackgroundPage().constantsService;
|
||||
|
||||
var headerPieces = this.encryptedString.split('.'),
|
||||
encPieces;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user