libdata-entropy-perl 0.007-4 source package in Ubuntu
Changelog
libdata-entropy-perl (0.007-4) unstable; urgency=medium [ Salvatore Bonaccorso ] * debian/control: Use HTTPS transport protocol for Vcs-Git URI [ gregor herrmann ] * debian/copyright: change Copyright-Format 1.0 URL to HTTPS. * Remove Jotam Jr. Trejo from Uploaders. Thanks for your work! [ 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. -- Jelmer Vernooij <email address hidden> Sun, 12 Jun 2022 22:59:30 +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 | Published | Component | Section | |
---|---|---|---|---|
Mantic | release | universe | perl | |
Lunar | release | universe | perl | |
Kinetic | release | universe | perl |
Downloads
File | Size | SHA-256 Checksum |
---|---|---|
libdata-entropy-perl_0.007-4.dsc | 2.3 KiB | e55f69a7264fc572e8dd08537083de6ce346981bdeade10ae9d744c4e64ee15b |
libdata-entropy-perl_0.007.orig.tar.gz | 42.6 KiB | 2611c4a1a3038594d79ea4ed14d9e15a9af8f77105f51667795fe4f8a53427e4 |
libdata-entropy-perl_0.007-4.debian.tar.xz | 3.0 KiB | 1c2ef5979aa14d360d0b7720ed5abeb86ff0f31dcc4c21555b88d3019593c5a2 |
Available diffs
- diff from 0.007-3.1 to 0.007-4 (1.6 KiB)
No changes file available.
Binary packages built by this source
- libdata-entropy-perl: 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.