gPass/server/resources/gpass.js

822 lines
21 KiB
JavaScript
Raw Normal View History

2013-10-09 20:47:43 +02:00
// parseUri 1.2.2
// (c) Steven Levithan <stevenlevithan.com>
// MIT License
// http://blog.stevenlevithan.com/archives/parseuri
function parseUri (str) {
var o = parseUri.options,
m = o.parser[o.strictMode ? "strict" : "loose"].exec(str),
uri = {},
i = 14;
while (i--) uri[o.key[i]] = m[i] || "";
uri[o.q.name] = {};
uri[o.key[12]].replace(o.q.parser, function ($0, $1, $2) {
if ($1) uri[o.q.name][$1] = $2;
});
return uri;
};
parseUri.options = {
strictMode: false,
key: ["source","protocol","authority","userInfo","user","password","host","port","relative","path","directory","file","query","anchor"],
q: {
name: "queryKey",
parser: /(?:^|&)([^&=]*)=?([^&]*)/g
},
parser: {
strict: /^(?:([^:\/?#]+):)?(?:\/\/((?:(([^:@]*)(?::([^:@]*))?)?@)?([^:\/?#]*)(?::(\d*))?))?((((?:[^?#\/]*\/)*)([^?#]*))(?:\?([^#]*))?(?:#(.*))?)/,
loose: /^(?:(?![^:@]+:[^:@\/]*@)([^:\/?#.]+):)?(?:\/\/)?((?:(([^:@]*)(?::([^:@]*))?)?@)?([^:\/?#]*)(?::(\d*))?)(((\/(?:[^?#](?![^?#\/]*\.[^?#\/.]+(?:[?#]|$)))*\/?)?([^?#\/]*))(?:\?([^#]*))?(?:#(.*))?)/
}
};
2013-10-22 18:33:44 +02:00
if (!String.prototype.trim) {
String.prototype.trim = function() {
return this.replace(/^\s+|\s+$/g, "");
};
}
// Array Remove - By John Resig (MIT Licensed)
// http://stackoverflow.com/questions/500606/javascript-array-delete-elements
Array.prototype.remove = function(from, to) {
var rest = this.slice((to || from) + 1 || this.length);
this.length = from < 0 ? this.length + from : from;
return this.push.apply(this, rest);
};
2013-10-23 19:39:47 +02:00
Element.prototype.removeAllChilds = function() {
while (this.hasChildNodes())
this.removeChild(this.childNodes[0]);
};
2015-02-09 18:57:49 +01:00
function generate_random(size, only_ascii)
2013-10-09 20:47:43 +02:00
{
// symbols 32 - 47 / 58 - 64 / 91 - 96 / 123 - 126
// numbers 48 - 57
// upper 65 - 90
// lower 97 - 122
// Give priority to letters (65 - 122 duplicated in front and end of array)
2015-02-09 18:57:49 +01:00
var symbols;
if (only_ascii)
symbols = new Array(65, 90, 97, 122, 40, 47, 48, 57, 65, 90, 97, 122, 123, 126, 65, 90, 97, 122);
else
symbols = new Array(1, 255);
2013-10-09 20:47:43 +02:00
var res = "";
2015-02-09 18:57:49 +01:00
while (res.length < size)
2013-10-09 20:47:43 +02:00
{
a = Math.round(Math.random() * (symbols.length/2) * 2);
diff = symbols[a+1] - symbols[a];
r = Math.round(Math.random()*diff);
if (isNaN(r+symbols[a]))
continue;
res += String.fromCharCode(r + symbols[a]);
}
2015-02-09 18:57:49 +01:00
return res;
}
function generate_password()
{
document.getElementById("new_password").value = generate_random(16, true);
2013-10-09 20:47:43 +02:00
}
function url_domain(data) {
var uri = parseUri(data)
return uri['host'];
}
// http://stackoverflow.com/questions/3745666/how-to-convert-from-hex-to-ascii-in-javascript
function hex2a(hex) {
var str = '';
for (var i = 0; i < hex.length; i += 2)
str += String.fromCharCode(parseInt(hex.substr(i, 2), 16));
return str;
}
function a2hex(str) {
var hex = '';
for (var i = 0; i < str.length; i++)
{
c = str.charCodeAt(i).toString(16);
if (c.length == 1) c = "0" + c;
hex += c;
}
return hex;
}
function derive_mkey(user, mkey)
{
url = url_domain(document.URL) + "/" + user;
mkey = a2hex(pkdbf2(mkey, url, pkdbf2_level, 256/8));
return mkey;
}
var passwords;
var current_user = "";
var current_mkey = "";
2015-03-27 18:23:26 +01:00
function PasswordEntry (ciphered_login, ciphered_password, salt, shadow_login) {
this.ciphered_login = ciphered_login;
this.ciphered_password = ciphered_password;
this.unciphered = false;
this.clear_url = "";
this.clear_login = "";
this.clear_password = "";
this.masterkey = "";
2015-02-09 18:57:49 +01:00
this.salt = salt;
this.shadow_login = shadow_login;
this.access_token = "";
this.encrypt = function(masterkey)
{
if (masterkey == this.masterkey)
return true;
if (masterkey == "" || this.clear_url == "" || this.clear_login == "")
return false;
ciphered_login = "@@" + this.clear_url + ";" + this.clear_login;
// Add salt
ciphered_password = this.clear_password + generate_random(3, false);
aes = new AES();
a_masterkey = aes.init(hex2a(masterkey));
this.ciphered_login = a2hex(aes.encryptLongString(ciphered_login, a_masterkey));
this.ciphered_password = a2hex(aes.encryptLongString(ciphered_password, a_masterkey));
aes.finish();
this.unciphered = true;
this.masterkey = masterkey;
if (use_shadow_logins)
this.generate_access_token(masterkey);
}
this.decrypt = function(masterkey)
{
if (masterkey == this.masterkey && this.unciphered == true)
return true;
if (masterkey == "" || this.unciphered == true)
return false;
aes = new AES();
a_masterkey = aes.init(hex2a(masterkey));
login = aes.decryptLongString(hex2a(this.ciphered_login), a_masterkey);
2013-10-23 19:39:47 +02:00
login = login.replace(/\0*$/, "");
if (login.indexOf("@@") != 0)
{
aes.finish();
return false;
}
// Remove @@
login = login.substring(2);
infos = login.split(";");
this.clear_url = infos[0];
this.clear_login = infos[1];
this.clear_password = aes.decryptLongString(hex2a(this.ciphered_password), a_masterkey);
this.unciphered = true;
this.masterkey = masterkey;
aes.finish();
2013-10-22 18:33:44 +02:00
// Remove salt
this.clear_password = this.clear_password.replace(/\0*$/, "");
this.clear_password = this.clear_password.substr(0, this.clear_password.length-3);
return true;
}
this.isUnciphered = function(masterkey)
{
return (this.unciphered == true && masterkey == this.masterkey && masterkey != "")
}
2013-10-23 19:39:47 +02:00
this.isCiphered = function(masterkey)
{
return !(this.isUnciphered(masterkey));
}
2015-02-09 18:57:49 +01:00
this.shadow_login_to_access_token = function(masterkey)
{
var aes = new AES();
var key = pkdbf2(hex2a(masterkey), hex2a(this.salt), pkdbf2_level, 256/8);
var a_key = aes.init(hex2a(key));
this.access_token = aes.encryptLongString(hex2a(this.shadow_login), a_key);
this.access_token = a2hex(this.access_token);
aes.finish();
}
this.generate_access_token = function(masterkey)
{
this.salt = a2hex(generate_random(16, false));
this.shadow_login = a2hex(generate_random(16, false));
return this.shadow_login_to_access_token(masterkey);
}
}
function list_all_entries(user)
{
passwords = new Array();
2015-02-09 18:57:49 +01:00
req = new XMLHttpRequest();
req.addEventListener("load", function(evt) {
2015-02-09 18:57:49 +01:00
j = JSON.parse(this.responseText);
for(i=0; i<j.entries.length; i++)
{
2015-02-09 18:57:49 +01:00
if (j.entries[i].hasOwnProperty('login'))
p = new PasswordEntry(j.entries[i].login, j.entries[i].password, "", "");
else
p = new PasswordEntry("", "", j.entries[i].salt, j.entries[i].shadow_login);
passwords.push(p);
}
2015-02-09 18:57:49 +01:00
}
, false);
2013-10-22 18:33:44 +02:00
req.open("POST", document.documentURI, false);
req.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded; charset=UTF-8');
2013-10-22 18:33:44 +02:00
req.send("get_passwords=1&user=" + user);
}
2013-10-23 19:39:47 +02:00
function update_stats()
{
nb_ciphered_passwords = 0;
nb_unciphered_passwords = 0;
for(i=0; i<passwords.length; i++)
{
2013-10-23 19:39:47 +02:00
if (passwords[i].isUnciphered(current_mkey))
nb_unciphered_passwords++;
else
nb_ciphered_passwords++;
}
2013-10-23 19:39:47 +02:00
div = document.getElementById("nb_unciphered_passwords");
div.removeAllChilds();
text = document.createElement("b");
text.appendChild(document.createTextNode(nb_unciphered_passwords + " unciphered password(s)"));
2013-10-23 19:39:47 +02:00
div.appendChild(text);
div.appendChild(document.createElement("br"));
div.appendChild(document.createElement("br"));
div = document.getElementById("nb_ciphered_passwords");
div.removeAllChilds();
text = document.createElement("b");
text.appendChild(document.createTextNode(nb_ciphered_passwords + " ciphered password(s)"));
div.appendChild(text);
div.appendChild(document.createElement("br"));
div.appendChild(document.createElement("br"));
}
2015-02-09 18:57:49 +01:00
// Remove all password without credentials
function put_ciphered_credentials(passwords, masterkey)
{
for(var i=0; i<passwords.length; i++)
{
passwords[i].generate_access_token(masterkey);
remove_password_server(current_user, passwords[i].ciphered_login, '');
add_password_server(current_user, passwords[i]);
}
}
function get_ciphered_credentials(masterkey)
{
access_tokens = '';
old_passwords = new Array();
for(var i=0; i<passwords.length; i++)
{
// Already got
if (passwords[i].ciphered_login.length)
{
if (!passwords[i].access_token.length)
old_passwords.push(passwords[i]);
continue;
}
passwords[i].shadow_login_to_access_token(masterkey);
if (access_tokens.length) access_tokens += ",";
access_tokens += passwords[i].access_token;
}
if (old_passwords.length)
put_ciphered_credentials(old_passwords, masterkey);
if (!access_tokens.length)
return;
req = new XMLHttpRequest();
req.addEventListener("load", function(evt) {
j = JSON.parse(this.responseText);
for(i=0; i<j.entries.length; i++)
{
for (k=0; k<passwords.length; k++)
{
if (passwords[k].access_token == j.entries[i].access_token)
{
passwords[k].ciphered_login = j.entries[i].login;
passwords[k].ciphered_password = j.entries[i].password;
break;
}
}
}
}, false);
req.open("POST", document.documentURI, false);
req.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded; charset=UTF-8');
req.send("get_secure_passwords=1&user=" + user + "&access_tokens=" + access_tokens);
}
function change_master_key(warning_unciphered)
2013-10-23 19:39:47 +02:00
{
var nb_unciphered = 0;
2015-02-09 18:57:49 +01:00
if (current_mkey.length && use_shadow_logins)
get_ciphered_credentials(current_mkey);
2013-10-23 19:39:47 +02:00
for(i=0; i<passwords.length; i++)
{
if (passwords[i].decrypt(current_mkey))
nb_unciphered++;
}
if (!nb_unciphered && warning_unciphered)
alert("No password unciphered with this master key !");
2013-10-23 19:39:47 +02:00
password_div = document.getElementById("passwords");
password_div.removeAllChilds();
div = document.createElement("div");
div.setAttribute("id", "nb_unciphered_passwords");
password_div.appendChild(div);
for(i=0; i<passwords.length; i++)
{
if (passwords[i].isUnciphered(current_mkey))
{
div = document.createElement("div");
2013-10-23 19:39:47 +02:00
div.setAttribute("id", "unciph_entry_" + i);
div.setAttribute("class", "password");
2013-10-22 18:33:44 +02:00
ciph_login = document.createElement("input");
ciph_login.setAttribute("name", "ciphered_login");
ciph_login.setAttribute("type", "hidden");
ciph_login.setAttribute("login", passwords[i].ciphered_login);
div.appendChild(ciph_login);
div.appendChild(document.createTextNode("URL"));
url = document.createElement("input");
url.setAttribute("type", "text");
2013-10-23 19:39:47 +02:00
url.setAttribute("name", "url");
url.setAttribute("value", passwords[i].clear_url);
div.appendChild(url);
div.appendChild(document.createTextNode("login"));
login = document.createElement("input");
login.setAttribute("type", "text");
login.setAttribute("name", "login");
login.setAttribute("value", passwords[i].clear_login);
div.appendChild(login);
div.appendChild(document.createTextNode("password"));
password = document.createElement("input");
password.setAttribute("type", "text");
password.setAttribute("name", "password");
password.setAttribute("value", passwords[i].clear_password);
div.appendChild(password);
delete_button = document.createElement("input");
delete_button.setAttribute("type", "button");
delete_button.setAttribute("value", "Delete");
2013-10-23 19:39:47 +02:00
delete_button.setAttribute("onclick", "delete_entry(\"unciph_entry_" + i + "\");");
div.appendChild(delete_button);
update_button = document.createElement("input");
update_button.setAttribute("type", "button");
update_button.setAttribute("value", "Update");
2013-10-23 19:39:47 +02:00
update_button.setAttribute("onclick", "update_entry(\"unciph_entry_" + i + "\");");
div.appendChild(update_button);
password_div.appendChild(div);
}
}
2013-10-23 19:39:47 +02:00
div = document.createElement("div");
div.setAttribute("id", "nb_ciphered_passwords");
password_div.appendChild(div);
for(i=0; i<passwords.length; i++)
{
2013-10-23 19:39:47 +02:00
if (passwords[i].isCiphered(current_mkey))
{
div = document.createElement("div");
2013-10-23 19:39:47 +02:00
div.setAttribute("id", "ciph_entry_" + i);
div.setAttribute("class", "password");
2013-10-22 18:33:44 +02:00
ciph_login = document.createElement("input");
ciph_login.setAttribute("name", "ciphered_login");
ciph_login.setAttribute("type", "hidden");
div.appendChild(ciph_login);
div.appendChild(document.createTextNode("URL"));
url = document.createElement("input");
url.setAttribute("class", "hash");
url.setAttribute("type", "text");
url.setAttribute("name", "URL");
div.appendChild(url);
div.appendChild(document.createTextNode("password"));
password = document.createElement("input");
password.setAttribute("class", "hash");
password.setAttribute("type", "text");
password.setAttribute("name", "password");
div.appendChild(password);
delete_button = document.createElement("input");
delete_button.setAttribute("type", "button");
delete_button.setAttribute("value", "Delete");
2013-10-23 19:39:47 +02:00
delete_button.setAttribute("onclick", "delete_entry(\"ciph_entry_" + i + "\");");
div.appendChild(delete_button);
password_div.appendChild(div);
2015-02-09 18:57:49 +01:00
if (passwords[i].ciphered_login.length)
{
ciph_login.setAttribute("login", passwords[i].ciphered_login);
url.setAttribute("value", passwords[i].ciphered_login);
password.setAttribute("value", passwords[i].ciphered_password);
}
else
{
ciph_login.setAttribute("login", passwords[i].shadow_login);
url.setAttribute("value", passwords[i].shadow_login);
// password empty
}
}
}
2013-10-23 19:39:47 +02:00
input = document.getElementById("master_key");
input.value = "";
2013-10-23 19:39:47 +02:00
update_stats();
}
function update_master_key(warning_unciphered)
{
user = select_widget.options[select_widget.selectedIndex].value;
if (user != current_user)
{
current_user = user;
2013-10-22 18:33:44 +02:00
2014-06-10 20:40:53 +02:00
document.title = "gPass - " + current_user;
2013-10-22 18:33:44 +02:00
list_all_entries(current_user);
addon_address = document.getElementById("addon_address");
2013-10-23 19:39:47 +02:00
addon_address.removeAllChilds();
addon_address.appendChild(document.createTextNode("Current addon address is : " + document.documentURI + current_user));
2014-02-19 17:37:27 +01:00
warning_unciphered = false;
}
current_mkey = document.getElementById("master_key").value;
if (current_mkey != "")
current_mkey = derive_mkey(current_user, current_mkey);
else
// Disable warning on empty master key (clear passwords from others)
warning_unciphered = false;
change_master_key(warning_unciphered);
}
function start()
{
select_widget = document.getElementById('selected_user') ;
if (select_widget == null) return;
return update_master_key(false);
2013-10-22 18:33:44 +02:00
}
2013-10-23 19:39:47 +02:00
function add_password_server(user, pentry)
2013-10-22 18:33:44 +02:00
{
2013-10-23 19:39:47 +02:00
var ok = false;
req = new XMLHttpRequest();
req.addEventListener("load", function(evt) {
resp = this.responseText;
if (resp == "OK")
ok = true;
else
alert(resp);
}, false);
req.open("POST", document.documentURI, false);
req.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded; charset=UTF-8');
2015-02-09 18:57:49 +01:00
req.send("add_entry=1&user=" + user + "&login=" + pentry.ciphered_login + "&password=" + pentry.ciphered_password + "&shadow_login=" + pentry.shadow_login + "&salt=" + pentry.salt + "&access_token=" + pentry.access_token);
2013-10-22 18:33:44 +02:00
2013-10-23 19:39:47 +02:00
return ok;
}
2013-10-22 18:33:44 +02:00
2013-10-23 19:39:47 +02:00
function construct_pentry(user, url, password, login, mkey, derive_masterkey)
{
var ret = null;
2013-10-22 18:33:44 +02:00
if (url == "")
{
alert("URL is empty");
2013-10-23 19:39:47 +02:00
return ret;
2013-10-22 18:33:44 +02:00
}
if (login == "")
{
alert("Login is empty");
2013-10-23 19:39:47 +02:00
return ret;
2013-10-22 18:33:44 +02:00
}
if (password == "")
{
alert("Password is empty");
2013-10-23 19:39:47 +02:00
return ret;
2013-10-22 18:33:44 +02:00
}
if (mkey == "")
{
alert("Master key is empty");
2013-10-23 19:39:47 +02:00
return ret;
2013-10-22 18:33:44 +02:00
}
2013-10-23 19:39:47 +02:00
if (derive_masterkey)
mkey = derive_mkey(current_user, mkey);
2013-10-22 18:33:44 +02:00
for(i=0; i<passwords.length; i++)
{
p = passwords[i];
if (p.clear_url == url &&
p.clear_password == password &&
p.clear_login == login &&
p.masterkey == mkey)
{
alert("Entry already exists");
2013-10-23 19:39:47 +02:00
return ret;
2013-10-22 18:33:44 +02:00
}
}
pentry = new PasswordEntry("", "", "", "");
2013-10-23 19:39:47 +02:00
pentry.clear_url = url;
pentry.clear_login = login;
2015-02-09 18:57:49 +01:00
pentry.clear_password = password;
pentry.encrypt(mkey);
2013-10-23 19:39:47 +02:00
return pentry;
}
2015-02-09 18:57:49 +01:00
function remove_password_server(user, login, access_token)
2013-10-23 19:39:47 +02:00
{
2013-10-22 18:33:44 +02:00
var ok = false;
2013-10-23 19:39:47 +02:00
2013-10-22 18:33:44 +02:00
req = new XMLHttpRequest();
req.addEventListener("load", function(evt) {
resp = this.responseText;
if (resp == "OK")
ok = true;
else
alert(resp);
}, false);
req.open("POST", document.documentURI, false);
req.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded; charset=UTF-8');
2015-02-09 18:57:49 +01:00
req.send("delete_entry=1&user=" + user + "&login=" + login + "&access_token=" + access_token);
2013-10-22 18:33:44 +02:00
2013-10-23 19:39:47 +02:00
return ok;
}
2013-10-22 18:33:44 +02:00
2013-10-23 19:39:47 +02:00
function add_password()
{
var url = "";
var login = "";
var password = "";
var mkey = "";
2013-10-22 18:33:44 +02:00
2013-10-23 19:39:47 +02:00
div = document.getElementById("add_new_password");
inputs = div.getElementsByTagName("input");
for(i=0; i<inputs.length; i++)
{
if (inputs[i].getAttribute("name") == "url")
url = url_domain(inputs[i].value);
else if (inputs[i].getAttribute("name") == "login")
login = inputs[i].value.trim();
else if (inputs[i].getAttribute("name") == "password")
password = inputs[i].value.trim();
else if (inputs[i].getAttribute("name") == "mkey")
mkey = inputs[i].value;
}
pentry = construct_pentry(current_user, url, password, login, mkey, true)
if (pentry == null) return;
res = add_password_server(current_user, pentry);
if (!res) return false;
current_mkey = pentry.masterkey;
2013-10-22 18:33:44 +02:00
passwords.push(pentry);
change_master_key(false);
2013-10-22 18:33:44 +02:00
for(i=0; i<inputs.length; i++)
2013-10-23 19:39:47 +02:00
{
if (inputs[i].getAttribute("type") == "text" ||
inputs[i].getAttribute("type") == "password")
inputs[i].value = "";
}
2013-10-22 18:33:44 +02:00
return true;
}
function delete_entry(entry_number)
{
entry = document.getElementById(entry_number);
if (entry == null) {
alert(entry_number + " not found");
return;
}
inputs = entry.getElementsByTagName("input");
var ciphered_login = null;
for(i=0; i<inputs.length; i++)
{
if (inputs[i].getAttribute("name") == "ciphered_login")
{
ciphered_login = inputs[i];
break;
}
}
if (ciphered_login == null)
{
alert("Widget not found");
return;
}
var found = -1;
for(i=0; i<passwords.length; i++)
{
2013-10-23 19:39:47 +02:00
if (passwords[i].ciphered_login == ciphered_login.getAttribute("login"))
2013-10-22 18:33:44 +02:00
{
found = i;
break;
}
}
if (found == -1)
{
alert("Password not found int database");
return;
}
if(!confirm("Are you sure want to delete this entry ?"))
return;
2015-02-09 18:57:49 +01:00
ok = remove_password_server(current_user, ciphered_login.getAttribute("login"), passwords[i].access_token);
2013-10-22 18:33:44 +02:00
2013-10-23 19:39:47 +02:00
if (!ok) return;
2013-10-22 18:33:44 +02:00
2013-10-23 19:39:47 +02:00
parent = ciphered_login.parentNode;
parent.removeAllChilds();
2013-10-22 18:33:44 +02:00
passwords.remove(found);
2013-10-23 19:39:47 +02:00
update_stats();
2013-10-22 18:33:44 +02:00
}
2013-10-23 19:39:47 +02:00
function update_entry(entry_number)
{
var url = "";
var login = "";
var password = "";
var mkey = "";
var ciphered_login;
entry = document.getElementById(entry_number);
if (entry == null) {
alert(entry_number + " not found");
return;
}
inputs = entry.getElementsByTagName("input");
var ciphered_login = null;
for(i=0; i<inputs.length; i++)
{
if (inputs[i].getAttribute("name") == "url")
url = url_domain(inputs[i].value);
else if (inputs[i].getAttribute("name") == "login")
login = inputs[i].value.trim();
else if (inputs[i].getAttribute("name") == "password")
password = inputs[i].value.trim();
else if (inputs[i].getAttribute("name") == "ciphered_login")
ciphered_login = inputs[i];
}
var found = -1;
for(i=0; i<passwords.length; i++)
{
if (passwords[i].ciphered_login == ciphered_login.getAttribute("login"))
{
found = i;
break;
}
}
if (found == -1)
{
alert("Password not found int database");
return;
}
if(!confirm("Are you sure want to update this entry ?"))
return;
pentry = construct_pentry(current_user, url, password, login, current_mkey, false);
if (pentry == null) return;
2015-02-09 18:57:49 +01:00
ok = remove_password_server(current_user, passwords[found].ciphered_login, passwords[found].access_token);
2013-10-23 19:39:47 +02:00
if (!ok) return;
ok = add_password_server(current_user, pentry);
if (!ok) return;
passwords[found] = pentry;
ciphered_login.setAttribute("login", pentry.ciphered_login);
alert("Entry updated");
}
function update_masterkey()
{
var url = "";
var login = "";
var password = "";
var mkey = "";
var ciphered_login;
oldmkey = document.getElementById("oldmkey").value;
newmkey = document.getElementById("newmkey").value;
if (newmkey == "" || oldmkey == "")
{
alert("Cannot set an empty masterkey");
return;
}
if(!confirm("Are you sure want to update the masterkey ?"))
return;
oldmkey = derive_mkey(current_user, oldmkey);
current_mkey = derive_mkey(current_user, newmkey);
var found = 0;
for(i=0; i<passwords.length; i++)
{
if (passwords[i].decrypt(oldmkey))
{
ok = remove_password_server(current_user, passwords[i].ciphered_login, passwords[i].access_token);
if (!ok)
{
alert("Error updating password");
break;
}
passwords[i].encrypt(current_mkey);
ok = add_password_server(current_user, passwords[i]);
if (!ok)
{
alert("Error updating password");
break;
}
found++;
}
}
if (found == 0)
alert("No password found with this masterkey");
else
{
alert(found + " passwords updated");
change_master_key(false);
}
}