1
0
mirror of https://github.com/bitwarden/browser.git synced 2024-10-02 04:48:57 +02:00

set prng paranoia to 10

This commit is contained in:
Kyle Spearrin 2016-10-10 21:39:19 -04:00
parent 8e2f69fa8e
commit 41660962b4

View File

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