libmath-random-isaac-perl 1.004-ok2 source package in openKylin

Changelog

libmath-random-isaac-perl (1.004-ok2) yangtze; urgency=medium

  * Update version info.

 -- Luoyaoming <email address hidden>  Thu, 22 Sep 2022 15:53:10 +0800

Upload details

Uploaded by:
luoyaoming
Sponsored by:
Cibot
Uploaded to:
Yangtze V1.0
Original maintainer:
Openkylin Developers
Architectures:
all
Section:
perl
Urgency:
Medium Urgency

Publishing See full publishing history

Series Pocket Published Component Section
Huanghe V3.0 proposed main perl
Huanghe V3.0 release main perl
Nile V2.0 proposed main perl
Nile V2.0 release main perl
Yangtze V1.0 release main perl
Yangtze V1.0 proposed main perl

Downloads

File Size SHA-256 Checksum
libmath-random-isaac-perl_1.004.orig.tar.gz 33.6 KiB 2773f02fbf207e9745e76a037df08bf5a8cc987ed23c57040ce7f7b1561f2b7c
libmath-random-isaac-perl_1.004-ok2.debian.tar.xz 2.3 KiB a0fd5e4ce4f700e6f63085c9f0ac50272fd912a8d11cb1452040e8705fe151b5
libmath-random-isaac-perl_1.004-ok2.dsc 2.2 KiB 17259a02d413ac5b6f4a5038d7db356c2d99cd6c003591d05b76cdb517617132

Available diffs

View changes file

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.