Commit d1d896a3 authored by JC Brand's avatar JC Brand

HAS_CRYPTO was actually checking for the opposite

parent 774f0119
...@@ -57,9 +57,9 @@ ...@@ -57,9 +57,9 @@
var KEY = { var KEY = {
ENTER: 13 ENTER: 13
}; };
var HAS_CSPRNG = ((typeof crypto === 'undefined') || ( var HAS_CSPRNG = ((typeof crypto !== 'undefined') &&
(typeof crypto.randomBytes !== 'function') && ((typeof crypto.randomBytes === 'function') ||
(typeof crypto.getRandomValues !== 'function') (typeof crypto.getRandomValues === 'function')
)); ));
var HAS_CRYPTO = HAS_CSPRNG && ( var HAS_CRYPTO = HAS_CSPRNG && (
(typeof CryptoJS !== "undefined") && (typeof CryptoJS !== "undefined") &&
......
This diff is collapsed.
...@@ -1666,9 +1666,9 @@ ...@@ -1666,9 +1666,9 @@
} }
;(function seed() { ;(function seed() {
var HAS_CSPRNG = ((typeof crypto === 'undefined') || var HAS_CSPRNG = ((typeof crypto !== 'undefined') &&
((typeof crypto.randomBytes !== 'function') && ((typeof crypto.randomBytes === 'function') ||
(typeof crypto.getRandomValues !== 'function') (typeof crypto.getRandomValues === 'function')
)); ));
if (!HAS_CSPRNG) { if (!HAS_CSPRNG) {
return; return;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment