-
-
18 Jul 2021 12:16:09 UTC
- Distribution: CryptX
- Module version: 0.073
- Source (raw)
- Browse (raw)
- Changes
- How to Contribute
- Repository
- Issues (1)
- Testers (1989 / 98 / 0)
- Kwalitee
Bus factor: 1- 66.31% Coverage
- License: perl_5
- Perl: v5.6.0
- Activity
24 month- Tools
- Download (1.57MB)
- MetaCPAN Explorer
- Permissions
- Subscribe to distribution
- Permalinks
- This version
- Latest version
- Dependencies
- unknown
- Reverse dependencies
- CPAN Testers List
- Dependency graph
NAME
Crypt::Mode::ECB - Block cipher mode ECB [Electronic codebook]
SYNOPSIS
use Crypt::Mode::ECB; my $m = Crypt::Mode::ECB->new('AES'); #(en|de)crypt at once my $ciphertext = $m->encrypt($plaintext, $key); my $plaintext = $m->decrypt($ciphertext, $key); #encrypt more chunks $m->start_encrypt($key); my $ciphertext = $m->add('some data'); $ciphertext .= $m->add('more data'); $ciphertext .= $m->finish; #decrypt more chunks $m->start_decrypt($key); my $plaintext = $m->add($some_ciphertext); $plaintext .= $m->add($more_ciphertext); $plaintext .= $m->finish;
DESCRIPTION
This module implements ECB cipher mode. NOTE: it works only with ciphers from CryptX (Crypt::Cipher::NNNN). BEWARE: ECB is inherently insecure, if you are not sure go for Crypt::Mode::CBC!
METHODS
new
my $m = Crypt::Mode::ECB->new($name); #or my $m = Crypt::Mode::ECB->new($name, $padding); #or my $m = Crypt::Mode::ECB->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
encrypt
my $ciphertext = $m->encrypt($plaintext, $key);
decrypt
my $plaintext = $m->decrypt($ciphertext, $key);
start_encrypt
$m->start_encrypt($key);
start_decrypt
$m->start_decrypt($key);
add
# in encrypt mode my $plaintext = $m->add($ciphertext); # in decrypt mode my $ciphertext = $m->add($plaintext);
finish
#encrypt more chunks $m->start_encrypt($key); my $ciphertext = ''; $ciphertext .= $m->add('some data'); $ciphertext .= $m->add('more data'); $ciphertext .= $m->finish; #decrypt more chunks $m->start_decrypt($key); my $plaintext = ''; $plaintext .= $m->add($some_ciphertext); $plaintext .= $m->add($more_ciphertext); $plaintext .= $m->finish;
SEE ALSO
Module Install Instructions
To install CryptX, copy and paste the appropriate command in to your terminal.
cpanm CryptX
perl -MCPAN -e shell install CryptX
For more information on module installation, please visit the detailed CPAN module installation guide.