How to Install and Uninstall perl-Crypt-CBC Package on openSuSE Tumbleweed

Last updated: May 21,2024

1. Install "perl-Crypt-CBC" package

Please follow the steps below to install perl-Crypt-CBC on openSuSE Tumbleweed

$ sudo zypper refresh $ sudo zypper install perl-Crypt-CBC

2. Uninstall "perl-Crypt-CBC" package

In this section, we are going to explain the necessary steps to uninstall perl-Crypt-CBC on openSuSE Tumbleweed:

$ sudo zypper remove perl-Crypt-CBC

3. Information about the perl-Crypt-CBC package on openSuSE Tumbleweed

Information for package perl-Crypt-CBC:
---------------------------------------
Repository : openSUSE-Tumbleweed-Oss
Name : perl-Crypt-CBC
Version : 3.04-1.13
Arch : noarch
Vendor : openSUSE
Installed Size : 111.5 KiB
Installed : No
Status : not installed
Source package : perl-Crypt-CBC-3.04-1.13.src
Upstream URL : https://metacpan.org/release/Crypt-CBC
Summary : Encrypt Data with Cipher Block Chaining Mode
Description :
This module is a Perl-only implementation of the cryptographic cipher block
chaining mode (CBC). In combination with a block cipher such as AES or
Blowfish, you can encrypt and decrypt messages of arbitrarily long length.
The encrypted messages are compatible with the encryption format used by
the *OpenSSL* package.
To use this module, you will first create a Crypt::CBC cipher object with
new(). At the time of cipher creation, you specify an encryption key to use
and, optionally, a block encryption algorithm. You will then call the
start() method to initialize the encryption or decryption process, crypt()
to encrypt or decrypt one or more blocks of data, and lastly finish(), to
pad and encrypt the final block. For your convenience, you can call the
encrypt() and decrypt() methods to operate on a whole data value at once.