How To Install bcrypt on Fedora 36
Introduction
In this tutorial we learn how to install bcrypt
on Fedora 36.
What is bcrypt
Bcrypt is a cross platform file encryption utility. Encrypted files are portable across all supported operating systems and processors. Passphrases must be between 8 and 56 characters and are hashed internally to a 448 bit key. However, all characters supplied are significant. The stronger your passphrase, the more secure your data. In addition to encrypting your data, bcrypt will by default overwrite the original input file with random garbage three times before deleting it in order to thwart data recovery attempts by persons who may gain access to your computer. Bcrypt uses the blowfish encryption algorithm published by Bruce Schneier in 1993.
We can use yum
or dnf
to install bcrypt
on Fedora 36. In this tutorial we discuss both methods but you only need to choose one of method to install bcrypt.
Install bcrypt 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 bcrypt
using dnf
by running the following command:
sudo dnf -y install bcrypt
Install bcrypt 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 bcrypt
using yum
by running the following command:
sudo yum -y install bcrypt
How To Uninstall bcrypt on Fedora 36
To uninstall only the bcrypt
package we can use the following command:
sudo dnf remove bcrypt
bcrypt Package Contents on Fedora 36
/usr/bin/bcrypt
/usr/lib/.build-id
/usr/lib/.build-id/3a
/usr/lib/.build-id/3a/b75259b564032d6e2f9abf58c2de11e418de75
/usr/share/doc/bcrypt
/usr/share/doc/bcrypt/README
/usr/share/licenses/bcrypt
/usr/share/licenses/bcrypt/LICENSE
/usr/share/man/man1/bcrypt.1.gz
References
Summary
In this tutorial we learn how to install bcrypt
on Fedora 36 using yum and [dnf]((/fedora/36/dnf/).