mirror of
http://git.whoc.org.uk/git/password-manager.git
synced 2024-11-10 22:17:15 +01:00
Unified PRNG setup across all application versions
This commit is contained in:
parent
6141a7fce3
commit
67263a05a6
@ -316,9 +316,9 @@ Clipperz.Crypto.PRNG.CryptoRandomRandomnessSource.prototype = MochiKit.Base.upda
|
||||
var bytesToCollect;
|
||||
|
||||
if (this.boostMode() == true) {
|
||||
bytesToCollect = 8;
|
||||
bytesToCollect = 64;
|
||||
} else {
|
||||
bytesToCollect = 32;
|
||||
bytesToCollect = 8;
|
||||
}
|
||||
|
||||
var randomValuesArray = new Uint8Array(bytesToCollect);
|
||||
|
@ -318,7 +318,7 @@ Clipperz.Crypto.PRNG.CryptoRandomRandomnessSource.prototype = MochiKit.Base.upda
|
||||
var bytesToCollect;
|
||||
|
||||
if (this.boostMode() == true) {
|
||||
bytesToCollect = 256;
|
||||
bytesToCollect = 64;
|
||||
} else {
|
||||
bytesToCollect = 8;
|
||||
}
|
||||
|
@ -318,9 +318,9 @@ Clipperz.Crypto.PRNG.CryptoRandomRandomnessSource.prototype = MochiKit.Base.upda
|
||||
var bytesToCollect;
|
||||
|
||||
if (this.boostMode() == true) {
|
||||
bytesToCollect = 8;
|
||||
bytesToCollect = 64;
|
||||
} else {
|
||||
bytesToCollect = 32;
|
||||
bytesToCollect = 8;
|
||||
}
|
||||
|
||||
var randomValuesArray = new Uint8Array(bytesToCollect);
|
||||
|
Loading…
Reference in New Issue
Block a user