libcrypt-ecb-perl 2.23-1 source package in Ubuntu
Changelog
libcrypt-ecb-perl (2.23-1) unstable; urgency=medium * Team upload. [ Debian Janitor ] * Update standards version to 4.5.1, no changes needed. * Update standards version to 4.6.0, no changes needed. * Update standards version to 4.6.1, no changes needed. [ gregor herrmann ] * Import upstream version 2.23. * Update years of packaging copyright. * Declare compliance with Debian Policy 4.6.2. * Extend build tests and autopkgtests. -- gregor herrmann <email address hidden> Sat, 20 Jan 2024 19:34:19 +0100
Upload details
- Uploaded by:
- Debian Perl Group
- Uploaded to:
- Sid
- Original maintainer:
- Debian Perl Group
- Architectures:
- all
- Section:
- perl
- Urgency:
- Medium Urgency
See full publishing history Publishing
Series | Published | Component | Section | |
---|---|---|---|---|
Plucky | release | universe | perl | |
Oracular | release | universe | perl | |
Noble | release | universe | perl |
Downloads
File | Size | SHA-256 Checksum |
---|---|---|
libcrypt-ecb-perl_2.23-1.dsc | 2.6 KiB | d04d8e8749547322c4bb5fa0063db97407a6d5abef1322164ab1c151f0f2e7d7 |
libcrypt-ecb-perl_2.23.orig.tar.gz | 25.5 KiB | a8cac070374d2a022d5860bca6cebb146e8351bf676bfbaf49a8edafb6ccad56 |
libcrypt-ecb-perl_2.23-1.debian.tar.xz | 3.1 KiB | 21cfaf58816c37a88f8dbd042fc2e3e55e21db7173474b937300569856b8e087 |
Available diffs
- diff from 2.22-1 to 2.23-1 (2.1 KiB)
No changes file available.
Binary packages built by this source
- libcrypt-ecb-perl: Perl library to encrypt data using ECB mode
Crypt::ECB is a Perl-only implementation of the ECB mode. In
combination with a block cipher such as DES, IDEA or Blowfish, you can
encrypt and decrypt messages of arbitrarily long length. Though for
security reasons other modes than ECB such as CBC should be preferred.
See textbooks on cryptography if you want to know why.
.
The functionality of the module can be accessed via OO methods or via
standard function calls. Remember that some crypting module like for
example Blowfish has to be installed. The syntax follows that of
Crypt::CBC meaning you can access Crypt::ECB exactly like Crypt::CBC,
though Crypt::ECB is more flexible. For example you can change the key
or the cipher without having to create a new crypt object.