mirror of
https://github.com/PrivateBin/PrivateBin.git
synced 2024-03-22 13:10:41 +08:00
remove extra variable i
This commit is contained in:
parent
c1fcb9a560
commit
b25a0d63e6
|
@ -369,7 +369,7 @@ sjcl.random = {
|
||||||
(function(){
|
(function(){
|
||||||
try {
|
try {
|
||||||
// get cryptographically strong entropy in Webkit
|
// get cryptographically strong entropy in Webkit
|
||||||
var ab = new Uint32Array(32), i;
|
var ab = new Uint32Array(32);
|
||||||
crypto.getRandomValues(ab);
|
crypto.getRandomValues(ab);
|
||||||
sjcl.random.addEntropy(ab, 1024, "crypto.getRandomValues");
|
sjcl.random.addEntropy(ab, 1024, "crypto.getRandomValues");
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
|
|
Loading…
Reference in New Issue
Block a user