libbytes-random-secure-perl 0.29-3 source package in Ubuntu

Changelog

libbytes-random-secure-perl (0.29-3) unstable; urgency=medium

  [ Debian Janitor ]
  * Apply multi-arch hints. + libbytes-random-secure-perl: Add Multi-Arch: foreign.

 -- Jelmer Vernooij <email address hidden>  Thu, 08 Dec 2022 12:41:21 +0000

Upload details

Uploaded by:
Debian Perl Group
Uploaded to:
Sid
Original maintainer:
Debian Perl Group
Architectures:
all
Section:
misc
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section
Oracular release universe misc
Noble release universe misc
Mantic release universe misc
Lunar release universe misc

Builds

Lunar: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
libbytes-random-secure-perl_0.29-3.dsc 2.2 KiB 9d2e66e20bf88e21570ca7ab7942050644419d89a35ad6224ef3a266346293c4
libbytes-random-secure-perl_0.29.orig.tar.gz 27.4 KiB 53bbd339e6a11efca07c619a615c7c188a68bb2be849a1cb7efc3dd4d9ae85ae
libbytes-random-secure-perl_0.29-3.debian.tar.xz 2.6 KiB 1ac7615186ddb73ed363f45a19bcf92bfff508c55d349277a91d3fb08590023c

Available diffs

No changes file available.

Binary packages built by this source

libbytes-random-secure-perl: Perl extension to generate cryptographically-secure random bytes

 Bytes::Random::Secure provides two interfaces for obtaining crypt-quality
 random bytes. The simple interface is built around plain functions. For
 greater control over the Random Number Generator's seeding, there is an
 Object Oriented interface that provides much more flexibility.
 .
 The "functions" interface provides five functions that can be used any time
 you need a string (or MIME Base64 representation, or hex-digits
 representation, or Quoted Printable representation) of a specific number of
 random bytes. There are equivalent methods available via the OO interface.
 .
 Bytes::Random::Secure can be a drop-in replacement for Bytes::Random, with
 the primary enhancement of using a much higher quality random number
 generator to create the random data. The random_bytes function emulates the
 user interface of Bytes::Random's function by the same name. But with
 Bytes::Random::Secure the random number generator comes from
 Math::Random::ISAAC, and is suitable for cryptographic purposes. The harder
 problem to solve is how to seed the generator. This module uses
 Crypt::Random::Seed to generate the initial seeds for Math::Random::ISAAC.