File: control

package info (click to toggle)
libcrypt-ecb-perl 2.23-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 220 kB
  • sloc: perl: 821; makefile: 2
file content (48 lines) | stat: -rw-r--r-- 2,317 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
Source: libcrypt-ecb-perl
Maintainer: Debian Perl Group <pkg-perl-maintainers@lists.alioth.debian.org>
Uploaders: Ivan Kohler <ivan-debian@420.am>,
           Xavier Guimard <yadd@debian.org>,
           Angel Abad <angel@debian.org>
Section: perl
Testsuite: autopkgtest-pkg-perl
Priority: optional
Build-Depends: debhelper-compat (= 13)
Build-Depends-Indep: libcrypt-blowfish-perl <!nocheck>,
                     libcrypt-blowfish-perl <!nocheck>,
                     libcrypt-cast5-perl <!nocheck>,
                     libcrypt-des-ede3-perl <!nocheck>,
                     libcrypt-des-perl <!nocheck>,
                     libcrypt-eksblowfish-perl <!nocheck>,
                     libcrypt-rijndael-perl <!nocheck>,
                     libcrypt-twofish-perl <!nocheck>,
                     perl
Standards-Version: 4.6.2
Vcs-Browser: https://salsa.debian.org/perl-team/modules/packages/libcrypt-ecb-perl
Vcs-Git: https://salsa.debian.org/perl-team/modules/packages/libcrypt-ecb-perl.git
Homepage: https://metacpan.org/release/Crypt-ECB
Rules-Requires-Root: no

Package: libcrypt-ecb-perl
Architecture: all
Depends: ${misc:Depends},
         ${perl:Depends},
         libcrypt-blowfish-perl | libcrypt-cast5-perl | libcrypt-des-ede3-perl | libcrypt-des-perl | libcrypt-eksblowfish-perl | libcrypt-twofish-perl
Suggests: libcrypt-blowfish-perl,
          libcrypt-cast5-perl,
          libcrypt-des-ede3-perl,
          libcrypt-des-perl,
          libcrypt-eksblowfish-perl,
          libcrypt-twofish-perl
Description: 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.