aboutsummaryrefslogtreecommitdiff
path: root/node_modules/brorand
diff options
context:
space:
mode:
authorFlorian Dold <florian.dold@gmail.com>2017-05-03 15:35:00 +0200
committerFlorian Dold <florian.dold@gmail.com>2017-05-03 15:35:00 +0200
commitde98e0b232509d5f40c135d540a70e415272ff85 (patch)
treea79222a5b58484ab3b80d18efcaaa7ccc4769b33 /node_modules/brorand
parente0c9d480a73fa629c1e4a47d3e721f1d2d345406 (diff)
downloadwallet-core-de98e0b232509d5f40c135d540a70e415272ff85.tar.xz
node_modules
Diffstat (limited to 'node_modules/brorand')
-rw-r--r--node_modules/brorand/.npmignore2
-rw-r--r--node_modules/brorand/README.md26
-rw-r--r--node_modules/brorand/index.js65
-rw-r--r--node_modules/brorand/package.json31
-rw-r--r--node_modules/brorand/test/api-test.js8
5 files changed, 132 insertions, 0 deletions
diff --git a/node_modules/brorand/.npmignore b/node_modules/brorand/.npmignore
new file mode 100644
index 000000000..1ca957177
--- /dev/null
+++ b/node_modules/brorand/.npmignore
@@ -0,0 +1,2 @@
+node_modules/
+npm-debug.log
diff --git a/node_modules/brorand/README.md b/node_modules/brorand/README.md
new file mode 100644
index 000000000..f80437d14
--- /dev/null
+++ b/node_modules/brorand/README.md
@@ -0,0 +1,26 @@
+# Brorand
+
+#### LICENSE
+
+This software is licensed under the MIT License.
+
+Copyright Fedor Indutny, 2014.
+
+Permission is hereby granted, free of charge, to any person obtaining a
+copy of this software and associated documentation files (the
+"Software"), to deal in the Software without restriction, including
+without limitation the rights to use, copy, modify, merge, publish,
+distribute, sublicense, and/or sell copies of the Software, and to permit
+persons to whom the Software is furnished to do so, subject to the
+following conditions:
+
+The above copyright notice and this permission notice shall be included
+in all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
+OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN
+NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
+DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
+OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
+USE OR OTHER DEALINGS IN THE SOFTWARE.
diff --git a/node_modules/brorand/index.js b/node_modules/brorand/index.js
new file mode 100644
index 000000000..9a0fff4d2
--- /dev/null
+++ b/node_modules/brorand/index.js
@@ -0,0 +1,65 @@
+var r;
+
+module.exports = function rand(len) {
+ if (!r)
+ r = new Rand(null);
+
+ return r.generate(len);
+};
+
+function Rand(rand) {
+ this.rand = rand;
+}
+module.exports.Rand = Rand;
+
+Rand.prototype.generate = function generate(len) {
+ return this._rand(len);
+};
+
+// Emulate crypto API using randy
+Rand.prototype._rand = function _rand(n) {
+ if (this.rand.getBytes)
+ return this.rand.getBytes(n);
+
+ var res = new Uint8Array(n);
+ for (var i = 0; i < res.length; i++)
+ res[i] = this.rand.getByte();
+ return res;
+};
+
+if (typeof self === 'object') {
+ if (self.crypto && self.crypto.getRandomValues) {
+ // Modern browsers
+ Rand.prototype._rand = function _rand(n) {
+ var arr = new Uint8Array(n);
+ self.crypto.getRandomValues(arr);
+ return arr;
+ };
+ } else if (self.msCrypto && self.msCrypto.getRandomValues) {
+ // IE
+ Rand.prototype._rand = function _rand(n) {
+ var arr = new Uint8Array(n);
+ self.msCrypto.getRandomValues(arr);
+ return arr;
+ };
+
+ // Safari's WebWorkers do not have `crypto`
+ } else if (typeof window === 'object') {
+ // Old junk
+ Rand.prototype._rand = function() {
+ throw new Error('Not implemented yet');
+ };
+ }
+} else {
+ // Node.js or Web worker with no crypto support
+ try {
+ var crypto = require('crypto');
+ if (typeof crypto.randomBytes !== 'function')
+ throw new Error('Not supported');
+
+ Rand.prototype._rand = function _rand(n) {
+ return crypto.randomBytes(n);
+ };
+ } catch (e) {
+ }
+}
diff --git a/node_modules/brorand/package.json b/node_modules/brorand/package.json
new file mode 100644
index 000000000..f213c9d8f
--- /dev/null
+++ b/node_modules/brorand/package.json
@@ -0,0 +1,31 @@
+{
+ "name": "brorand",
+ "version": "1.1.0",
+ "description": "Random number generator for browsers and node.js",
+ "main": "index.js",
+ "scripts": {
+ "test": "mocha --reporter=spec test/**/*-test.js"
+ },
+ "repository": {
+ "type": "git",
+ "url": "git@github.com:indutny/brorand"
+ },
+ "keywords": [
+ "Random",
+ "RNG",
+ "browser",
+ "crypto"
+ ],
+ "author": "Fedor Indutny <fedor@indutny.com>",
+ "license": "MIT",
+ "bugs": {
+ "url": "https://github.com/indutny/brorand/issues"
+ },
+ "homepage": "https://github.com/indutny/brorand",
+ "devDependencies": {
+ "mocha": "^2.0.1"
+ },
+ "browser": {
+ "crypto": false
+ }
+}
diff --git a/node_modules/brorand/test/api-test.js b/node_modules/brorand/test/api-test.js
new file mode 100644
index 000000000..b6c876d35
--- /dev/null
+++ b/node_modules/brorand/test/api-test.js
@@ -0,0 +1,8 @@
+var brorand = require('../');
+var assert = require('assert');
+
+describe('Brorand', function() {
+ it('should generate random numbers', function() {
+ assert.equal(brorand(100).length, 100);
+ });
+});