File: control

package info (click to toggle)
libcrypt-eksblowfish-perl 0.009-2
  • links: PTS, VCS
  • area: main
  • in suites: bullseye, buster, stretch
  • size: 216 kB
  • ctags: 20
  • sloc: perl: 132; makefile: 2
file content (41 lines) | stat: -rw-r--r-- 1,928 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
Source: libcrypt-eksblowfish-perl
Maintainer: Debian Perl Group <pkg-perl-maintainers@lists.alioth.debian.org>
Uploaders: Ivan Kohler <ivan-debian@420.am>,
           Xavier Guimard <x.guimard@free.fr>
Section: perl
Testsuite: autopkgtest-pkg-perl
Priority: optional
Build-Depends: debhelper (>= 9.20120312),
               libclass-mix-perl,
               libmodule-build-perl,
               libtest-pod-perl,
               libtest-pod-coverage-perl,
               perl
Standards-Version: 3.9.6
Vcs-Browser: https://anonscm.debian.org/cgit/pkg-perl/packages/libcrypt-eksblowfish-perl.git
Vcs-Git: git://anonscm.debian.org/pkg-perl/packages/libcrypt-eksblowfish-perl.git
Homepage: https://metacpan.org/release/Crypt-Eksblowfish

Package: libcrypt-eksblowfish-perl
Architecture: any
Depends: ${misc:Depends},
         ${perl:Depends},
         ${shlibs:Depends},
         libclass-mix-perl
Description: Perl module implementing the Eksblowfish block cipher
 Crypt::Eksblowfish provides an implementation of the Eksblowfish encryption.
 .
 Eksblowfish is a variant of the Blowfish cipher, modified to make the
 key setup very expensive.  ("Eks" stands for "expensive key schedule".)
 This doesn't make it significantly cryptographically stronger,
 but is intended to hinder brute-force attacks.  It also makes it
 unsuitable for any application requiring key agility.  It was designed
 by Niels Provos and David Mazieres for password hashing in OpenBSD.
 See Crypt::Eksblowfish::Bcrypt for the hash algorithm.
 .
 Eksblowfish is a parameterised (family-keyed) cipher.  It takes a cost
 parameter that controls how expensive the key scheduling is.  It also
 takes a family key, known as the "salt".  Cost and salt parameters
 together define a cipher family.  Within each family, a key determines an
 encryption function in the usual way.  See Crypt::Eksblowfish::Family
 for a way to encapsulate an Eksblowfish cipher family.