Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/skratchdot/random-seed
GRC's UHE PRNG in node (Ultra-High Entropy Pseudo-Random Number Generator by Gibson Research Corporation)
https://github.com/skratchdot/random-seed
Last synced: 7 days ago
JSON representation
GRC's UHE PRNG in node (Ultra-High Entropy Pseudo-Random Number Generator by Gibson Research Corporation)
- Host: GitHub
- URL: https://github.com/skratchdot/random-seed
- Owner: skratchdot
- License: other
- Created: 2013-10-26T18:08:00.000Z (about 11 years ago)
- Default Branch: master
- Last Pushed: 2016-09-19T17:58:54.000Z (over 8 years ago)
- Last Synced: 2024-12-20T05:08:10.079Z (14 days ago)
- Language: JavaScript
- Size: 20.5 KB
- Stars: 94
- Watchers: 4
- Forks: 8
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE-GRC
Awesome Lists containing this project
README
# random-seed
[![NPM version](https://badge.fury.io/js/random-seed.svg)](http://badge.fury.io/js/random-seed)
[![Build Status](https://travis-ci.org/skratchdot/random-seed.png?branch=master)](https://travis-ci.org/skratchdot/random-seed)
[![Code Climate](https://codeclimate.com/github/skratchdot/random-seed.png)](https://codeclimate.com/github/skratchdot/random-seed)
[![Coverage Status](https://coveralls.io/repos/skratchdot/random-seed/badge.svg?branch=master&service=github)](https://coveralls.io/github/skratchdot/random-seed?branch=master)
[![Dependency Status](https://david-dm.org/skratchdot/random-seed.svg)](https://david-dm.org/skratchdot/random-seed)
[![devDependency Status](https://david-dm.org/skratchdot/random-seed/dev-status.svg)](https://david-dm.org/skratchdot/random-seed#info=devDependencies)[![NPM](https://nodei.co/npm/random-seed.png)](https://npmjs.org/package/random-seed)
## Description
Gibson Research Corporation's Ultra-High Entropy Pseudo-Random Number Generator
ported to node.The original library / project page is located here: https://www.grc.com/otg/uheprng.htm
The node project page is here: https://github.com/skratchdot/random-seed
There were a few modifications made to the original library to allow seeding, and to
pass jshint.I've also added the following helper methods:
- random()
- range(range)
- floatBetween(min, max)
- intBetween(min, max)## Getting Started
Install the module with: `npm install random-seed`
```javascript
var rand = require('random-seed').create();
var n = rand(100); // generate a random number between 0 - 99
```## Documentation
### Create a random number generator
```javascript
var gen = require('random-seed'); // create a generator// these generators produce different numbers
var rand1 = gen.create(); // method 1
var rand2 = new gen(); // method 2
var rand3 = gen(); // method 3// these generators will produce
// the same sequence of numbers
var seed = 'My Secret String Value';
var rand4 = gen.create(seed);
var rand5 = new gen(seed);
var rand6 = gen(seed);
```### Random Generator Methods
Once a random generator is created, you have the following methods available.
I typically create a random generator like this:
```javascript
var rand = require('random-seed').create();
```#### rand(range)
Returns a random integer between 0 (inclusive) and range (exclusive)
#### rand.range(range)
Returns a random integer between 0 (inclusive) and range (exclusive)
#### rand.random()
Returns a random float between 0 (inclusive) and 1 (exclusive)
Works the same as Math.random()
#### rand.floatBetween(min, max)
Returns a random float between min (inclusive) and max (exclusive)
#### rand.intBetween(min, max)
Returns a random integer between min (inclusive) and max (inclusive)
#### rand.seed(seed)
Same as calling rand.initState() followed by rand.hashString(seed). If seed is not
a string, then the seed value will be converted to a string. If you don't pass a
seed argument, then the generator uses Math.random() as the seed.#### rand.string(count)
Returns a pseudo-random string of 'count' printable characters
ranging from chr(33) to chr(126) inclusive.#### rand.cleanString(inStr)
Removes leading and trailing spaces and non-printing control characters,
including any embedded carriage-return (CR) and line-feed (LF) characters,
from any string it is handed. This is also used by the 'hashstring' function (below)
to help users always obtain the same EFFECTIVE uheprng seeding key.#### rand.hashString(inStr)
Hashes the provided character string after first removing any leading or trailing spaces
and ignoring any embedded carriage returns (CR) or Line Feeds (LF).#### rand.addEntropy(/* accept zero or more arguments */)
This handy exported function is used to add entropy to our uheprng at any time.
#### rand.initState()
If we want to provide a deterministic startup context for our PRNG,
but without directly setting the internal state variables, this allows
us to initialize the mash hash and PRNG's internal state before providing
some hashing input.#### rand.done()
We use this (optional) exported function to signal the JavaScript interpreter
that we're finished using the internal "Mash" hash function so that it can free up the
local "instance variables" it will have been maintaining. It's not strictly
necessary, of course, but it's good JavaScript citizenship.## Examples
### Default Usage: create 1 random number between 0 - 99
```javascript
var rand = require('random-seed').create();
var n = rand(100); // generate a random number between 0 - 99
```### Always create same sequence of random numbers
```javascript
var rand = require('random-seed').create();
rand.initState();
var n1 = rand(100); // n1 === 58
var n2 = rand(100); // n2 === 26
rand.initState(); // re-init
var n3 = rand(100); // n3 === 58 && n3 === n1
```### Create 2 random number generators
```javascript
var rand1 = require('random-seed').create(),
rand2 = require('random-seed').create();
console.log(rand1(100), rand2(100));
```### Create 2 random number generators with the same seed
```javascript
var seed = 'Hello World',
rand1 = require('random-seed').create(seed),
rand2 = require('random-seed').create(seed);
console.log(rand1(100), rand2(100));
```### Replace Math.random()
```javascript
var math = require('random-seed').create();
console.log(math.random());
```## Release History
#### v0.2.0 (Released June 1, 2014)
- Adding the following helper methods:
- rand.random(min, max)
- rand.floatBetween(min, max)
- rand.intBetween(min, max)#### v0.1.0 (Released October 26, 2013)
- Initial Release
## License
Copyright (c) 2013 skratchdot
Dual Licensed under the MIT license and the original Public Domain License by GRC.