libcrypt-ecb-perl 2.22-1 source package in Ubuntu

Changelog

libcrypt-ecb-perl (2.22-1) unstable; urgency=medium

  * Team upload.

  [ Salvatore Bonaccorso ]
  * Update Vcs-* headers for switch to salsa.debian.org

  [ Xavier Guimard ]
  * Email change: Xavier Guimard -> <email address hidden>

  [ Laurent Baillet ]
  * fix lintian file-contains-trailing-whitespace warning

  [ gregor herrmann ]
  * debian/watch: use uscan version 4.
  * Import upstream version 2.22.
  * Declare compliance with Debian Policy 4.5.0.
  * Set Rules-Requires-Root: no.
  * Annotate test-only build dependencies with <!nocheck>.
  * Bump debhelper-compat to 13.
  * Drop contentless debian/upstream/metadata.

 -- gregor herrmann <email address hidden>  Sat, 23 May 2020 00:44:24 +0200

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 Pocket Published Component Section
Mantic release universe perl
Lunar release universe perl
Jammy release universe perl

Builds

Groovy: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
libcrypt-ecb-perl_2.22-1.dsc 2.5 KiB 5b8fc33bd69f47be7daa79ca343389ccb5fedfd8b2c88ed25fe71da6339c5404
libcrypt-ecb-perl_2.22.orig.tar.gz 25.4 KiB f5af62e908cd31a34b2b813135a0718016fd003ffa0021ffbdd84c50158267aa
libcrypt-ecb-perl_2.22-1.debian.tar.xz 2.9 KiB bb7db735a41e7577f12cde64173fa171b2017b10151e51f43a20056dde3b4999

Available diffs

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.