mirror of
http://git.whoc.org.uk/git/password-manager.git
synced 2024-11-14 18:09:03 +01:00
Fixed another syntax issue breaking the building process
This commit is contained in:
parent
9de2c96f66
commit
2e65e86341
@ -227,16 +227,16 @@ Clipperz.PM.DataModel.OneTimePassword.normalizedOneTimePassword = function(aPass
|
|||||||
//#############################################################################
|
//#############################################################################
|
||||||
|
|
||||||
Clipperz.PM.DataModel.OneTimePassword.generateRandomBase32OTPValue = function() {
|
Clipperz.PM.DataModel.OneTimePassword.generateRandomBase32OTPValue = function() {
|
||||||
var randomValue;
|
var randomValue;
|
||||||
var result;
|
var result;
|
||||||
|
|
||||||
randomValue = Clipperz.Crypto.PRNG.defaultRandomGenerator().getRandomBytes(160/8);
|
randomValue = Clipperz.Crypto.PRNG.defaultRandomGenerator().getRandomBytes(160/8);
|
||||||
result = randomValue.toBase32String();
|
result = randomValue.toBase32String();
|
||||||
result = result.replace(/.{4}\B/g, '$&' + ' ');
|
result = result.replace(/.{4}\B/g, '$&' + ' ');
|
||||||
result = result.replace(/(.{4} ){2}/g, '$&' + '- ');
|
result = result.replace(/(.{4} ){2}/g, '$&' + '- ');
|
||||||
|
|
||||||
return result;
|
return result;
|
||||||
},
|
};
|
||||||
|
|
||||||
//#############################################################################
|
//#############################################################################
|
||||||
|
|
||||||
@ -253,4 +253,4 @@ Clipperz.PM.DataModel.OneTimePassword.createNewOneTimePassword = function(aUsern
|
|||||||
});
|
});
|
||||||
|
|
||||||
return result;
|
return result;
|
||||||
}
|
};
|
Loading…
Reference in New Issue
Block a user