How To Install beecrypt-devel on CentOS 8

beecrypt-devel is Development files for the beecrypt toolkit and library

Introduction

In this tutorial we learn how to install beecrypt-devel on CentOS 8.

What is beecrypt-devel

The beecrypt-devel package includes header files and libraries necessary for developing programs which use the beecrypt C toolkit and library. And beecrypt is a general-purpose cryptography library.

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

Install beecrypt-devel on CentOS 8 Using dnf

Update yum database with dnf using the following command.

sudo dnf makecache --refresh

The output should look something like this:

CentOS Linux 8 - AppStream                                       43 kB/s | 4.3 kB     00:00    
CentOS Linux 8 - BaseOS                                          65 kB/s | 3.9 kB     00:00    
CentOS Linux 8 - ContinuousRelease                               43 kB/s | 3.0 kB     00:00    
CentOS Linux 8 - Extras                                          23 kB/s | 1.5 kB     00:00    
CentOS Linux 8 - FastTrack                                       40 kB/s | 3.0 kB     00:00    
CentOS Linux 8 - HighAvailability                                36 kB/s | 3.9 kB     00:00    
CentOS Linux 8 - Plus                                            24 kB/s | 1.5 kB     00:00    
CentOS Linux 8 - PowerTools                                      50 kB/s | 4.3 kB     00:00    
Extra Packages for Enterprise Linux Modular 8 - x86_64           13 kB/s | 9.2 kB     00:00    
Extra Packages for Enterprise Linux 8 - x86_64                   24 kB/s | 8.5 kB     00:00    
Metadata cache created.

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

sudo dnf -y install beecrypt-devel

Install beecrypt-devel on CentOS 8 Using yum

Update yum database with yum using the following command.

sudo yum makecache --refresh

The output should look something like this:

CentOS Linux 8 - AppStream                                       43 kB/s | 4.3 kB     00:00    
CentOS Linux 8 - BaseOS                                          65 kB/s | 3.9 kB     00:00    
CentOS Linux 8 - ContinuousRelease                               43 kB/s | 3.0 kB     00:00    
CentOS Linux 8 - Extras                                          23 kB/s | 1.5 kB     00:00    
CentOS Linux 8 - FastTrack                                       40 kB/s | 3.0 kB     00:00    
CentOS Linux 8 - HighAvailability                                36 kB/s | 3.9 kB     00:00    
CentOS Linux 8 - Plus                                            24 kB/s | 1.5 kB     00:00    
CentOS Linux 8 - PowerTools                                      50 kB/s | 4.3 kB     00:00    
Extra Packages for Enterprise Linux Modular 8 - x86_64           13 kB/s | 9.2 kB     00:00    
Extra Packages for Enterprise Linux 8 - x86_64                   24 kB/s | 8.5 kB     00:00    
Metadata cache created.

After updating yum database, We can install beecrypt-devel using yum by running the following command:

sudo yum -y install beecrypt-devel

How To Uninstall beecrypt-devel on CentOS 8

To uninstall only the beecrypt-devel package we can use the following command:

sudo dnf remove beecrypt-devel

beecrypt-devel Package Contents on CentOS 8

/usr/include/beecrypt
/usr/include/beecrypt/aes.h
/usr/include/beecrypt/aesopt.h
/usr/include/beecrypt/api.h
/usr/include/beecrypt/base64.h
/usr/include/beecrypt/beecrypt.h
/usr/include/beecrypt/blockmode.h
/usr/include/beecrypt/blockpad.h
/usr/include/beecrypt/blowfish.h
/usr/include/beecrypt/blowfishopt.h
/usr/include/beecrypt/dhies.h
/usr/include/beecrypt/dldp.h
/usr/include/beecrypt/dlkp.h
/usr/include/beecrypt/dlpk.h
/usr/include/beecrypt/dlsvdp-dh.h
/usr/include/beecrypt/dsa.h
/usr/include/beecrypt/elgamal.h
/usr/include/beecrypt/endianness.h
/usr/include/beecrypt/entropy.h
/usr/include/beecrypt/fips186.h
/usr/include/beecrypt/gnu.h
/usr/include/beecrypt/hmac.h
/usr/include/beecrypt/hmacmd5.h
/usr/include/beecrypt/hmacsha1.h
/usr/include/beecrypt/hmacsha224.h
/usr/include/beecrypt/hmacsha256.h
/usr/include/beecrypt/hmacsha384.h
/usr/include/beecrypt/hmacsha512.h
/usr/include/beecrypt/md4.h
/usr/include/beecrypt/md5.h
/usr/include/beecrypt/memchunk.h
/usr/include/beecrypt/mp.h
/usr/include/beecrypt/mpbarrett.h
/usr/include/beecrypt/mpnumber.h
/usr/include/beecrypt/mpopt.h
/usr/include/beecrypt/mpprime.h
/usr/include/beecrypt/mtprng.h
/usr/include/beecrypt/pkcs1.h
/usr/include/beecrypt/pkcs12.h
/usr/include/beecrypt/ripemd128.h
/usr/include/beecrypt/ripemd160.h
/usr/include/beecrypt/ripemd256.h
/usr/include/beecrypt/ripemd320.h
/usr/include/beecrypt/rsa.h
/usr/include/beecrypt/rsakp.h
/usr/include/beecrypt/rsapk.h
/usr/include/beecrypt/sha1.h
/usr/include/beecrypt/sha1opt.h
/usr/include/beecrypt/sha224.h
/usr/include/beecrypt/sha256.h
/usr/include/beecrypt/sha2k32.h
/usr/include/beecrypt/sha2k64.h
/usr/include/beecrypt/sha384.h
/usr/include/beecrypt/sha512.h
/usr/include/beecrypt/timestamp.h
/usr/include/beecrypt/win.h
/usr/lib64/libbeecrypt.so
/usr/share/doc/beecrypt-devel
/usr/share/doc/beecrypt-devel/BUGS

References

Summary

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