How to Install and Uninstall perl-Tie-EncryptedHash.noarch Package on Fedora 34

Last updated: October 05,2024

1. Install "perl-Tie-EncryptedHash.noarch" package

This guide let you learn how to install perl-Tie-EncryptedHash.noarch on Fedora 34

$ sudo dnf update $ sudo dnf install perl-Tie-EncryptedHash.noarch

2. Uninstall "perl-Tie-EncryptedHash.noarch" package

Please follow the step by step instructions below to uninstall perl-Tie-EncryptedHash.noarch on Fedora 34:

$ sudo dnf remove perl-Tie-EncryptedHash.noarch $ sudo dnf autoremove

3. Information about the perl-Tie-EncryptedHash.noarch package on Fedora 34

Last metadata expiration check: 2:07:22 ago on Tue Sep 6 08:10:37 2022.
Available Packages
Name : perl-Tie-EncryptedHash
Version : 1.24
Release : 34.fc34
Architecture : noarch
Size : 23 k
Source : perl-Tie-EncryptedHash-1.24-34.fc34.src.rpm
Repository : fedora
Summary : Hashes (and objects based on hashes) with encrypting fields
URL : https://metacpan.org/release/Tie-EncryptedHash
License : GPL+ or Artistic
Description : Tie::EncryptedHash augments Perl hash semantics to build secure, encrypting
: containers of data. Tie::EncryptedHash introduces special hash fields that are
: coupled with encrypt/decrypt routines to encrypt assignments at STORE() and
: decrypt retrievals at FETCH(). By design, encrypting fields are associated with
: keys that begin in single underscore. The remaining keyspace is used for
: accessing normal hash fields, which are retained without modification.
:
: While the password is set, a Tie::EncryptedHash behaves exactly like a standard
: Perl hash. This is its transparent mode of access. Encrypting and normal fields
: are identical in this mode. When password is deleted, encrypting fields are
: accessible only as ciphertext. This is Tie::EncryptedHash's opaque mode of
: access, optimized for serialization.
:
: Encryption is done with Crypt::CBC(3), which encrypts in the cipher block
: chaining mode with Blowfish, DES or IDEA. Tie::EncryptedHash uses Blowfish by
: default, but can be instructed to employ any cipher supported by Crypt::CBC(3).