[ANN] crypt-isaac 1.2.0 Released

crypt-isaac 1.2.0 has been released!

* home: <https://github.com/wyhaines/crypt-isaact>
* bugs: <https://github.com/wyhaines/crypt-isaac/issues>

ISAAC is a cryptographically secure PRNG for generating high quality random
numbers. Detailed information about the algorithm can be found at:

http://burtleburtle.net/bob/rand/isaac.html

This library combines a pure Ruby implementation with a C implementation
bound as an extension. The C extension implementation currently runs about
10x faster than the pure ruby implementation on MRI. Requiring
'crypt/isaac' will use the C extension version if it was successfully
built, and fall back to the pure Ruby version if the C extension is
unavailable. One may specifically choose the C extension version by
requiring 'crypt/isaac/ext' or the pure ruby version by requiring
'crypt/isaac/pure'.

ISAAC is fast. This implementation is currently comparable to Random's
performance for both floats and for integers. ISAAC has strong statistical
properties, like the Mersenne Twister, but it is also cryptographically
strong, and different generators produce completely unique streams of
numbers, even if seeded with similar seeds (though the seed size is
substantial, so good seeding should make it difficult for two generators to
be similarly seeded).

The API is an extended version of the Ruby 2.x Random API, and one should
be able to use a Crypt::ISAAC instance any place that one uses a Random
instance.
Unlike Ruby's Random objects, however, individual generators may be
reseeded at any time by invoking #srand on them.

Changes:

* Made the pure Ruby and the C extensions more tightly match the behavior
of Random with regard to the treatment of class methods, and the existence
of a default generator stored in the DEFAULT constant. So
Crypt::ISAAC::DEFAULT exists, now.
* Cleaned up the C extension code somewhat.
* Fixed some issues with the Rakefile.
* Made the tests more complete; restructured tests so that it will test
both the C extension implementation and the pure Ruby implementation on the
same set of tests.

Maybe you mean GitHub - wyhaines/crypt-isaac: A Ruby implementation of the cryptographically secure ISAAC pseudorandom number generator, with both pure Ruby and C extension implementations. (without "t")

···

On Tue, Nov 22, 2016 at 12:53:09AM -0700, Kirk Haines wrote:

crypt-isaac 1.2.0 has been released!

* home: <https://github.com/wyhaines/crypt-isaact&gt;

Indeed I did. Thank you.

Kirk Haines

···

On Nov 22, 2016 9:15 AM, "Michael Lutsiuk" <michael.lutsiuk@gmail.com> wrote:

On Tue, Nov 22, 2016 at 12:53:09AM -0700, Kirk Haines wrote:
> crypt-isaac 1.2.0 has been released!
>
> * home: <https://github.com/wyhaines/crypt-isaact&gt;

Maybe you mean GitHub - wyhaines/crypt-isaac: A Ruby implementation of the cryptographically secure ISAAC pseudorandom number generator, with both pure Ruby and C extension implementations. (without "t")