libcrypt-des-ede3-perl 0.01-3 source package in Ubuntu

Changelog

libcrypt-des-ede3-perl (0.01-3) unstable; urgency=medium

  * Update standards version to 4.6.0, no changes needed.

 -- Debian Janitor <email address hidden>  Sat, 28 May 2022 11:37:59 +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 Pocket Published Component Section
Oracular release universe perl
Noble release universe perl
Mantic release universe perl
Lunar release universe perl

Builds

Kinetic: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
libcrypt-des-ede3-perl_0.01-3.dsc 2.1 KiB af3b0e87b79a3d26f81a037221a1a98bd6ffce5b040661aca862a1cba6aea63b
libcrypt-des-ede3-perl_0.01.orig.tar.gz 2.3 KiB 9cb2e04b625e9cc0833cd499f76fd12556583ececa782a9758a55e3f969748d6
libcrypt-des-ede3-perl_0.01-3.debian.tar.xz 2.2 KiB d800138ffa9a76eef0aa54013d29b1f2f09eca407b39fcd4bf64e939f854ddee

Available diffs

No changes file available.

Binary packages built by this source

libcrypt-des-ede3-perl: Triple-DES EDE encryption/decryption for perl

 Crypt::DES_EDE3 implements DES-EDE3 encryption. This is triple-DES
 encryption where an encrypt operation is encrypt-decrypt-encrypt, and
 decrypt is decrypt-encrypt-decrypt. This implementation uses Crypt::DES
 to do its dirty DES work, and simply provides a wrapper around that
 module: setting up the individual DES ciphers, initializing the keys,
 and performing the encryption/decryption steps.
 .
 You're probably best off not using this module directly, as the encrypt
 and decrypt methods expect 8-octet blocks. You might want to use the
 module in conjunction with Crypt::CBC, for example. This would be
 DES-EDE3-CBC, or triple-DES in outer CBC mode.