File: control

package info (click to toggle)
libdata-entropy-perl 0.008-1
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 280 kB
  • sloc: perl: 890; makefile: 2
file content (55 lines) | stat: -rw-r--r-- 2,577 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
49
50
51
52
53
54
55
Source: libdata-entropy-perl
Maintainer: Debian Perl Group <pkg-perl-maintainers@lists.alioth.debian.org>
Uploaders: Ivan Kohler <ivan@debian.org>,
           Xavier Guimard <yadd@debian.org>
Section: perl
Testsuite: autopkgtest-pkg-perl
Priority: optional
Build-Depends: debhelper-compat (= 13)
Build-Depends-Indep: libcrypt-rijndael-perl <!nocheck>,
                     libcrypt-urandom-perl <!nocheck>,
                     libdata-float-perl <!nocheck>,
                     libhttp-lite-perl <!nocheck>,
                     libparams-classify-perl <!nocheck>,
                     libtest-pod-coverage-perl <!nocheck>,
                     libtest-pod-perl <!nocheck>,
                     libtest-simple-perl <!nocheck>,
                     perl
Standards-Version: 4.7.2
Vcs-Browser: https://salsa.debian.org/perl-team/modules/packages/libdata-entropy-perl
Vcs-Git: https://salsa.debian.org/perl-team/modules/packages/libdata-entropy-perl.git
Homepage: https://metacpan.org/release/Data-Entropy
Rules-Requires-Root: no

Package: libdata-entropy-perl
Architecture: all
Depends: ${misc:Depends},
         ${perl:Depends},
         libcrypt-rijndael-perl,
         libcrypt-urandom-perl,
         libdata-float-perl,
         libhttp-lite-perl,
         libparams-classify-perl
Description: Perl module for entropy (randomness) management
 Data::Entropy maintains a concept of a current selection of entropy source.
 Algorithms that require entropy can use the source nominated by this
 module, avoiding the need for entropy source objects to be explicitly
 passed around.  This is convenient because usually one entropy source
 will be used for an entire program run and so an explicit entropy source
 parameter would rarely vary.  There is also a default entropy source,
 avoiding the need to explicitly configure a source at all.
 .
 If nothing is done to set a source then it defaults to the use of Rijndael
 (AES) in counter mode (see Data::Entropy::RawSource::CryptCounter
 and Crypt::Rijndael), keyed using Perl's built-in rand function.
 This gives a data stream that looks like concentrated entropy, but really
 only has at most the entropy of the rand seed.  Within a single run it
 is cryptographically difficult to detect the correlation between parts
 of the pseudo-entropy stream.  If more true entropy is required then it
 is necessary to configure a different entropy source.
 .
 This module is deprecated.
 .
 For most purposes (including cryptography and security), modules like
 Crypt::URandom, Crypt::SysRandom or Crypt::PRNG are more than
 adequate.