1
0
mirror of https://github.com/bitwarden/browser.git synced 2024-11-25 12:15:18 +01:00

set prng paranoia to 10

This commit is contained in:
Kyle Spearrin 2016-10-10 21:28:57 -04:00
parent 4d3d774573
commit 1426719406

View File

@ -113,7 +113,7 @@ function initCryptoService() {
var response = {}; var response = {};
var params = { var params = {
mode: "cbc", mode: "cbc",
iv: sjcl.random.randomWords(4, 0) iv: sjcl.random.randomWords(4, 10)
}; };
var ctJson = sjcl.encrypt(key, plaintextValue, params, response); var ctJson = sjcl.encrypt(key, plaintextValue, params, response);