How to Install and Uninstall perl-Crypt-CBC Package on openSUSE Leap

Last updated: February 02,2025

1. Install "perl-Crypt-CBC" package

This guide let you learn how to install perl-Crypt-CBC on openSUSE Leap

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

2. Uninstall "perl-Crypt-CBC" package

This guide covers the steps necessary to uninstall perl-Crypt-CBC on openSUSE Leap:

$ sudo zypper remove perl-Crypt-CBC

3. Information about the perl-Crypt-CBC package on openSUSE Leap

Information for package perl-Crypt-CBC:
---------------------------------------
Repository : Main Repository
Name : perl-Crypt-CBC
Version : 3.04-bp155.1.4
Arch : noarch
Vendor : openSUSE
Installed Size : 111.8 KiB
Installed : No
Status : not installed
Source package : perl-Crypt-CBC-3.04-bp155.1.4.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.