How To Install fizz on Fedora 34

fizz is A C++14 implementation of the TLS-1.3 standard A C++14 implementation of the TLS-1.3 standard

Introduction

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

What is fizz

Fizz is a TLS 1.3 implementation. Fizz currently supports TLS 1.3 drafts 28, 26 (both wire-compatible with the final specification), and 23. All major handshake modes are supported, including PSK resumption, early data, client authentication, and HelloRetryRequest. fizz 2021.04.26.00 1.fc34 x86_64 439 k fizz-2021.04.26.00-1.fc34.src.rpm updates A C++14 implementation of the TLS-1.3 standard https BSD Fizz is a TLS 1.3 implementation. Fizz currently supports TLS 1.3 drafts 28, 26 (both wire-compatible with the final specification), and 23. All major handshake modes are supported, including PSK resumption, early data, client authentication, and HelloRetryRequest.

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

Install fizz 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 fizz using dnf by running the following command:

sudo dnf -y install fizz

Install fizz 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 fizz using yum by running the following command:

sudo yum -y install fizz

How To Uninstall fizz on Fedora 34

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

sudo dnf remove fizz

fizz Package Contents on Fedora 34

/usr/lib/.build-id
/usr/lib/.build-id/28
/usr/lib/.build-id/28/c199edc564f0a184a6590ce28ae274a28c229e
/usr/lib64/libfizz.so.2021.04.26.00
/usr/lib64/libfizz.so.2021.4.26.0
/usr/share/licenses/fizz
/usr/share/licenses/fizz/LICENSE
/usr/lib/.build-id
/usr/lib/.build-id/a4
/usr/lib/.build-id/a4/a214cb043fb79698f0778d29be6b876960631f
/usr/lib/libfizz.so.2021.03.29.00
/usr/lib/libfizz.so.2021.3.29.0
/usr/share/licenses/fizz
/usr/share/licenses/fizz/LICENSE
/usr/lib/.build-id
/usr/lib/.build-id/d7
/usr/lib/.build-id/d7/58a98258b7768b2bacc5a93da4a45b7369e064
/usr/lib64/libfizz.so.2021.03.29.00
/usr/lib64/libfizz.so.2021.3.29.0
/usr/share/licenses/fizz
/usr/share/licenses/fizz/LICENSE
/usr/lib/.build-id
/usr/lib/.build-id/db
/usr/lib/.build-id/db/cd67c9e6c67145189cd3aabf102a3b411587c3
/usr/lib/libfizz.so.2021.04.26.00
/usr/lib/libfizz.so.2021.4.26.0
/usr/share/licenses/fizz
/usr/share/licenses/fizz/LICENSE

References

Summary

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