Crypt::Mode::CBC β Block cipher mode CBC [Cipher-block chaining]
| Use Case | Command | Description |
|---|---|---|
| π Create CBC object | $m = Crypt::Mode::CBC->new('AES'); | Initialize with cipher name (e.g., AES) |
| π Oneβshot encrypt | $ciphertext = $m->encrypt($plaintext, $key, $iv); | Encrypt data with key and IV in one step |
| π Oneβshot decrypt | $plaintext = $m->decrypt($ciphertext, $key, $iv); | Decrypt data with key and IV in one step |
| π‘ Streaming encrypt | $m->start_encrypt($key,$iv); $c = $m->add($d); ... $m->finish; | Encrypt multiple chunks sequentially |
| π₯ Streaming decrypt | $m->start_decrypt($key,$iv); $p = $m->add($d); ... $m->finish; | Decrypt multiple chunks sequentially |
| π οΈ Padding option | $m = Crypt::Mode::CBC->new('AES', 3); | Set padding (0=none,1=PKCS5,2=oneandzeroes,3=ANSI,4=zero,5=zero+block) |
use Crypt::Mode::CBC;
my $m = Crypt::Mode::CBC->new('AES');
#(en|de)crypt at once
my $ciphertext = $m->encrypt($plaintext, $key, $iv);
my $plaintext = $m->decrypt($ciphertext, $key, $iv);
#encrypt more chunks
$m->start_encrypt($key, $iv);
my $ciphertext = $m->add('some data');
$ciphertext .= $m->add('more data');
$ciphertext .= $m->finish;
#decrypt more chunks
$m->start_decrypt($key, $iv);
my $plaintext = $m->add($some_ciphertext);
$plaintext .= $m->add($more_ciphertext);
$plaintext .= $m->finish;
This module implements CBC cipher mode. NOTE: it works only with ciphers from CryptX (Crypt::Cipher::NNNN).
my $m = Crypt::Mode::CBC->new($name);
#or
my $m = Crypt::Mode::CBC->new($name, $padding);
#or
my $m = Crypt::Mode::CBC->new($name, $padding, $cipher_rounds);
# $name ....... one of 'AES', 'Anubis', 'Blowfish', 'CAST5', 'Camellia', 'DES', 'DES_EDE',
# 'KASUMI', 'Khazad', 'MULTI2', 'Noekeon', 'RC2', 'RC5', 'RC6',
# 'SAFERP', 'SAFER_K128', 'SAFER_K64', 'SAFER_SK128', 'SAFER_SK64',
# 'SEED', 'Skipjack', 'Twofish', 'XTEA', 'IDEA', 'Serpent'
# simply any <NAME> for which there exists Crypt::Cipher::<NAME>
# $padding .... 0 no padding (plaintext size has to be multiple of block length)
# 1 PKCS5 padding, Crypt::CBC's "standard" - DEFAULT
# 2 Crypt::CBC's "oneandzeroes"
# 3 ANSI X.923 padding
# 4 zero padding
# 5 zero padding (+a block of zeros if the output length is divisible by the blocksize)
# $cipher_rounds ... optional num of rounds for given cipher
my $ciphertext = $m->encrypt($plaintext, $key, $iv);
my $plaintext = $m->decrypt($ciphertext, $key, $iv);
$m->start_encrypt($key, $iv);
$m->start_decrypt($key, $iv);
# in encrypt mode
my $plaintext = $m->add($ciphertext);
# in decrypt mode
my $ciphertext = $m->add($plaintext);
#encrypt more chunks
$m->start_encrypt($key, $iv);
my $ciphertext = '';
$ciphertext .= $m->add('some data');
$ciphertext .= $m->add('more data');
$ciphertext .= $m->finish;
#decrypt more chunks
$m->start_decrypt($key, $iv);
my $plaintext = '';
$plaintext .= $m->add($some_ciphertext);
$plaintext .= $m->add($more_ciphertext);
$plaintext .= $m->finish;
Generated by phpman v4.9.26-5-g7740029 Author: Che Dong Under GNU General Public License
2026-08-25 07:24 @216.73.217.127
CrawledBy Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)