libmath-random-isaac-perl 1.004-2 source package in Ubuntu

Changelog

libmath-random-isaac-perl (1.004-2) unstable; urgency=medium

  [ gregor herrmann ]
  * debian/watch: use uscan version 4.

  [ Debian Janitor ]
  * Bump debhelper from old 11 to 12.
  * Set debhelper-compat version in Build-Depends.
  * Set upstream metadata fields: Bug-Database, Repository, Repository-
    Browse.
  * Bump debhelper from old 12 to 13.
  * Apply multi-arch hints. + libmath-random-isaac-perl: Add Multi-Arch: foreign.
  * Update standards version to 4.1.5, no changes needed.

 -- Jelmer Vernooij <email address hidden>  Wed, 30 Nov 2022 00:00:34 +0000

Upload details

Uploaded by:
Debian Perl Group
Uploaded to:
Sid
Original maintainer:
Debian Perl Group
Architectures:
all
Section:
perl
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section
Oracular release universe perl
Noble release universe perl
Mantic release universe perl
Lunar release universe perl

Builds

Lunar: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
libmath-random-isaac-perl_1.004-2.dsc 2.4 KiB 46d68578a7a1cf8eb8dda639b26d7962a2b2a826210f6ac733aa8ea65da6f14e
libmath-random-isaac-perl_1.004.orig.tar.gz 33.6 KiB 2773f02fbf207e9745e76a037df08bf5a8cc987ed23c57040ce7f7b1561f2b7c
libmath-random-isaac-perl_1.004-2.debian.tar.xz 3.2 KiB f94a81fd5200ec9d69db1976ab0b12deb9c2eab61acf9de04a7e1867ad468060

Available diffs

No changes file available.

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.