How to Install and Uninstall perl-Math-Random-ISAAC Package on openSUSE Leap

Last updated: June 30,2024

1. Install "perl-Math-Random-ISAAC" package

Learn how to install perl-Math-Random-ISAAC on openSUSE Leap

$ sudo zypper refresh $ sudo zypper install perl-Math-Random-ISAAC

2. Uninstall "perl-Math-Random-ISAAC" package

Here is a brief guide to show you how to uninstall perl-Math-Random-ISAAC on openSUSE Leap:

$ sudo zypper remove perl-Math-Random-ISAAC

3. Information about the perl-Math-Random-ISAAC package on openSUSE Leap

Information for package perl-Math-Random-ISAAC:
-----------------------------------------------
Repository : Main Repository
Name : perl-Math-Random-ISAAC
Version : 1.004-bp155.2.9
Arch : noarch
Vendor : openSUSE
Installed Size : 74.5 KiB
Installed : No
Status : not installed
Source package : perl-Math-Random-ISAAC-1.004-bp155.2.9.src
Upstream URL : http://search.cpan.org/dist/Math-Random-ISAAC
Summary : Perl interface to the ISAAC PRNG algorithm
Description :
As with other Pseudo-Random Number Generator (PRNG) 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.
However, ISAAC (Indirection, Shift, Accumulate, Add, and Count) has
different goals than these commonly used algorithms. In particular, it's
really fast - on average, it requires only 18.75 machine cycles to
generate a 32-bit value. This makes it suitable for applications where a
significant amount of random data needs to be produced quickly, such
solving using the Monte Carlo method or for games.
The results are uniformly distributed, unbiased, and unpredictable unless
you know the seed. The algorithm was published by Bob Jenkins in the late
90s and despite the best efforts of many security researchers, no feasible
attacks have been found to date.