How To Install libtomcrypt on Fedora 34

libtomcrypt is A comprehensive, portable cryptographic toolkit A comprehensive, portable cryptographic toolkit

Introduction

In this tutorial we learn how to install libtomcrypt on Fedora 34.

What is libtomcrypt

A comprehensive, modular and portable cryptographic toolkit that provides developers with a vast array of well known published block ciphers, one-way hash functions, chaining modes, pseudo-random number generators, public key cryptography and a plethora of other routines. Designed from the ground up to be very simple to use. It has a modular and standard API that allows new ciphers, hashes and PRNGs to be added or removed without change to the overall end application. It features easy to use functions and a complete user manual which has many source snippet examples. libtomcrypt 1.18.2 12.fc34 x86_64 395 k libtomcrypt-1.18.2-12.fc34.src.rpm fedora A comprehensive, portable cryptographic toolkit http Public Domain or WTFPL A comprehensive, modular and portable cryptographic toolkit that provides developers with a vast array of well known published block ciphers, one-way hash functions, chaining modes, pseudo-random number generators, public key cryptography and a plethora of other routines. Designed from the ground up to be very simple to use. It has a modular and standard API that allows new ciphers, hashes and PRNGs to be added or removed without change to the overall end application. It features easy to use functions and a complete user manual which has many source snippet examples.

We can use yum or dnf to install libtomcrypt on Fedora 34. In this tutorial we discuss both methods but you only need to choose one of method to install libtomcrypt.

Install libtomcrypt on Fedora 34 Using dnf

Update yum database with dnf using the following command.

sudo dnf makecache --refresh

The output should look something like this:

Fedora 34 - x86_64                               20 kB/s | 6.6 kB     00:00
Fedora 34 openh264 (From Cisco) - x86_64        1.4 kB/s | 989  B     00:00
Fedora Modular 34 - x86_64                       68 kB/s | 6.5 kB     00:00
Fedora 34 - x86_64 - Updates                    3.5 kB/s | 6.2 kB     00:01
Fedora Modular 34 - x86_64 - Updates             17 kB/s | 5.9 kB     00:00
Metadata cache created.

After updating yum database, We can install libtomcrypt using dnf by running the following command:

sudo dnf -y install libtomcrypt

Install libtomcrypt on Fedora 34 Using yum

Update yum database with yum using the following command.

sudo yum makecache --refresh

The output should look something like this:

Fedora 34 - x86_64                               20 kB/s | 6.6 kB     00:00
Fedora 34 openh264 (From Cisco) - x86_64        1.4 kB/s | 989  B     00:00
Fedora Modular 34 - x86_64                       68 kB/s | 6.5 kB     00:00
Fedora 34 - x86_64 - Updates                    3.5 kB/s | 6.2 kB     00:01
Fedora Modular 34 - x86_64 - Updates             17 kB/s | 5.9 kB     00:00
Metadata cache created.

After updating yum database, We can install libtomcrypt using yum by running the following command:

sudo yum -y install libtomcrypt

How To Uninstall libtomcrypt on Fedora 34

To uninstall only the libtomcrypt package we can use the following command:

sudo dnf remove libtomcrypt

libtomcrypt Package Contents on Fedora 34

/usr/lib/.build-id
/usr/lib/.build-id/36
/usr/lib/.build-id/36/62ebb89357ff268d64abcadd4f89a49a559fb1
/usr/lib/libtomcrypt.so.1
/usr/lib/libtomcrypt.so.1.0.1
/usr/share/licenses/libtomcrypt
/usr/share/licenses/libtomcrypt/LICENSE
/usr/lib/.build-id
/usr/lib/.build-id/b1
/usr/lib/.build-id/b1/4ae4c8cadf6a3fc0d24ababdd13c92cad2a9f0
/usr/lib64/libtomcrypt.so.1
/usr/lib64/libtomcrypt.so.1.0.1
/usr/share/licenses/libtomcrypt
/usr/share/licenses/libtomcrypt/LICENSE

References

Summary

In this tutorial we learn how to install libtomcrypt on Fedora 34 using yum and dnf.