libmath-random-isaac-perl 1.003-1 source package in Ubuntu
Changelog
libmath-random-isaac-perl (1.003-1) unstable; urgency=low [ Jonathan Yu ] * New upstream release * Note that the algorithm was Bob Jenkins, though he's not a copyright holder [ Ryan Niebur ] * Update jawnsy's email address [ gregor herrmann ] * debian/control: Changed: (build-)depend on perl instead of perl- modules. * Add perl (>= 5.10.1) as an alternative build dependency for Pod::Simple. [ Dominic Hargreaves ] * Note that this new release fixes FTBFS on perl 5.12 (Closes: #578898) -- Ubuntu Archive Auto-Sync <email address hidden> Sat, 30 Apr 2011 13:07:01 +0000
Upload details
- Uploaded by:
- Ubuntu Archive Auto-Sync
- Uploaded to:
- Oneiric
- Original maintainer:
- Debian Perl Group
- Architectures:
- all
- Section:
- perl
- Urgency:
- Low Urgency
See full publishing history Publishing
Series | Published | Component | Section | |
---|---|---|---|---|
Bionic | release | universe | perl | |
Xenial | release | universe | perl | |
Trusty | release | universe | perl | |
Precise | release | universe | perl |
Downloads
File | Size | SHA-256 Checksum |
---|---|---|
libmath-random-isaac-perl_1.003.orig.tar.gz | 33.6 KiB | 9f240304220580f4156444a92b6a2bf8bb037e2bd13e68f3f1ec929b6e8b4608 |
libmath-random-isaac-perl_1.003-1.diff.gz | 2.4 KiB | c25e5958bc71bf7d04e4650c4d473f009c36f49b3137f94a9dcae8f746e1a02f |
libmath-random-isaac-perl_1.003-1.dsc | 1.8 KiB | 8c7fa8614830cfe4b30a0789eb3138cfa2191332d8ab60155a58c231cefd7b8f |
Available diffs
- diff from 1.001-1 to 1.003-1 (47.1 KiB)
Binary packages built by this source
- libmath-random-isaac-perl: Perl interface to the ISAAC PRNG Algorithm
Math::
Random: :ISAAC implements the ISAAC (Indirection, Shift, Accumulate, Add
and Count) pseudorandom number generator (PRNG) algorithm described on the
project page at: <URL:http://burtleburtle. net/bob/ rand/isaac. html>
.
As with other algorithms like the Mersenne Twister (see Math::Random::MT),
this algorithm is designed to take some seed information and produce seemingly
random results as output.
.
The results are uniformly distributed, unbiased, and unpredictable unless you
know the seed. The algorithm was published by Bob Jenkins in the late 1990s
and despite the best efforts of many security researchers, no feasible attacks
have been found to date.
.
For comparison with other algorithms intended to generate random data, the
Mersenne Twister has a period of 2^19937-1, the related TT800 has a period
of 2^800-1 values. ISAAC has a period of 2^8295 values on average.