How To Install ghc-tf-random on Fedora 36

In this tutorial we learn how to install ghc-tf-random in Fedora 36. ghc-tf-random is High-quality splittable pseudorandom number generator

Introduction

In this tutorial we learn how to install ghc-tf-random on Fedora 36.

What is ghc-tf-random

This package contains an implementation of a high-quality splittable pseudorandom number generator. The generator is based on a cryptographic hash function built on top of the ThreeFish block cipher. See the paper /Splittable Pseudorandom Number Generators Using Cryptographic Hashing/ by Claessen, Pałka for details and the rationale of the design. The package provides the following * A splittable PRNG that implements the standard ‘System.Random.RandomGen’ class. * The generator also implements an alternative version of the ‘System.Random.TF.Gen.RandomGen’ class (exported from “System.Random.TF.Gen”), which requires the generator to return pseudorandom integers from the full 32-bit range, and contains an n-way split function. * An alternative version of the ‘Random’ class is provided, which is linked to the new ‘RandomGen’ class, together with ‘Random’ instances for some integral types. * Two functions for initialising the generator with a non-deterministic seed one using the system time, and one using the ‘/dev/urandom’ UNIX special file. The package uses an adapted version of the reference C implementation of ThreeFish from the reference package of the Skein hash function (<https Please note that even though the generator provides very high-quality pseudorandom numbers, it has not been designed with cryptographic applications in mind.

We can use yum or dnf to install ghc-tf-random on Fedora 36. In this tutorial we discuss both methods but you only need to choose one of method to install ghc-tf-random.

Install ghc-tf-random on Fedora 36 Using dnf

Update yum database with dnf using the following command.

sudo dnf makecache --refresh

After updating yum database, We can install ghc-tf-random using dnf by running the following command:

sudo dnf -y install ghc-tf-random

Install ghc-tf-random on Fedora 36 Using yum

Update yum database with yum using the following command.

sudo yum makecache --refresh

After updating yum database, We can install ghc-tf-random using yum by running the following command:

sudo yum -y install ghc-tf-random

How To Uninstall ghc-tf-random on Fedora 36

To uninstall only the ghc-tf-random package we can use the following command:

sudo dnf remove ghc-tf-random

ghc-tf-random Package Contents on Fedora 36

/usr/lib/.build-id
/usr/lib/.build-id/73
/usr/lib/.build-id/73/b78c78962d4087b923f377c5767b9d5f1287a6
/usr/lib64/libHStf-random-0.5-B5HEkZfyycj96EuX4yZv1L-ghc8.10.5.so
/usr/share/licenses/ghc-tf-random
/usr/share/licenses/ghc-tf-random/LICENSE
/usr/share/licenses/ghc-tf-random/LICENSE.brg
/usr/share/licenses/ghc-tf-random/LICENSE.tf

References

Summary

In this tutorial we learn how to install ghc-tf-random on Fedora 36 using yum and [dnf]((/fedora/36/dnf/).