How To Install botan2 on CentOS 8

In this tutorial we learn how to install botan2 on CentOS 8. botan2 is Crypto and TLS for C++11

Introduction

In this tutorial we learn how to install botan2 on CentOS 8.

What is botan2

Botan is a BSD-licensed crypto library written in C++. It provides a wide variety of basic cryptographic algorithms, X.509 certificates and CRLs, PKCS #10 certificate requests, a filter/pipe message processing system, and a wide variety of other features, all written in portable C++. The API reference, tutorial, and examples may help impart the flavor of the library. This is the current stable release branch 2.x of Botan.

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

Install botan2 on CentOS 8 Using yum

Update yum database with yum using the following command.

sudo yum makecache

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

sudo yum -y install botan2

Install botan2 on CentOS 8 Using dnf

If you don’t have dnf installed you can install DNF on CentOS 7 first. Update yum database with dnf using the following command.

sudo dnf makecache

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

sudo dnf -y install botan2

How To Uninstall botan2 on CentOS 8

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

sudo dnf remove botan2

References

Summary

In this tutorial we learn how to install botan2 on CentOS 8 using yum and dnf.