SecureRandom: /!\ throw an alert if the PRNG is used is initialized when the entropy collection using the mouse is not done.

This commit is contained in:
Michael Muré 2014-07-02 21:23:39 +02:00
parent 125d9d8997
commit 5b3cae1f32
3 changed files with 23 additions and 5 deletions

View file

@ -1543,6 +1543,11 @@ if (typeof Crypto == "undefined" || !Crypto.util) {
}
sr.getByte = function () {
if(!ninja.seeder.isDone()) {
alert("Premature initialisation of the random generator. Something is really wrong, do not generate wallets.");
return NaN;
}
if (sr.state == null) {
sr.seedTime();
sr.state = sr.ArcFour(); // Plug in your RNG constructor here
@ -10703,6 +10708,10 @@ ninja.publicKey = {
lastInputTime: new Date().getTime(),
seedPoints: [],
isDone: function() {
return ninja.seeder.seedCount >= ninja.seeder.seedLimit;
},
// seed function exists to wait for mouse movement to add more entropy before generating an address
seed: function (evt) {
if (!evt) var evt = window.event;

View file

@ -13,6 +13,10 @@
lastInputTime: new Date().getTime(),
seedPoints: [],
isDone: function() {
return ninja.seeder.seedCount >= ninja.seeder.seedLimit;
},
// seed function exists to wait for mouse movement to add more entropy before generating an address
seed: function (evt) {
if (!evt) var evt = window.event;

View file

@ -52,6 +52,11 @@
}
sr.getByte = function () {
if(!ninja.seeder.isDone()) {
alert("Premature initialisation of the random generator. Something is really wrong, do not generate wallets.");
return NaN;
}
if (sr.state == null) {
sr.seedTime();
sr.state = sr.ArcFour(); // Plug in your RNG constructor here