diff --git a/README.md b/README.md index 75e8326..f868fb6 100644 --- a/README.md +++ b/README.md @@ -5,15 +5,16 @@ ISAAC is a [CSPRNG](http://en.wikipedia.org/wiki/CSPRNG) designed by [Robert J. ISAAC can generate cryptographically secure pseudorandom numbers from an input but do not provide any entropy source. It's the responsability of the user to seed ISAAC with a strong entropy source. -##Use +## Use + Include isaac.js into your html file, and seed it using `isaac.seed(s)` then call `isaac.random()` to get a random real number between 0.0 and 1.0 : - `var random_number = isaac.random();` + var random_number = isaac.random(); If you want a little more control over the PRNG you can reset isaac (all internals to zero) using `isaac.reset()` or use a new seed using `isaac.seed(s)` (*s* can be a string, a number or an array of number). You can also run the PRNG an arbitrary number of time before querying a new random output using `isaac.prng(n)`, where *n* (optional) is the number of run. `isaac.rand()` allow you to get a random 32-bit integer between -2147483648 (0x00000000) and 2147483647 (0xFFFFFFFF). -##Licence -###isaac.js is released under the [MIT Licence](http://www.opensource.org/licenses/MIT): +## Licence +### isaac.js is released under the [MIT Licence](http://www.opensource.org/licenses/MIT): Copyright (c) 2012 Yves-Marie K. Rinquin 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: