libcrypt-dh-gmp-perl 0.00009-5 source package in Ubuntu

Changelog

libcrypt-dh-gmp-perl (0.00009-5) unstable; urgency=low


  [ Salvatore Bonaccorso ]
  * debian/copyright: Replace DEP5 Format-Specification URL from
    svn.debian.org to anonscm.debian.org URL.
  * Fix splitting of CCFLAGS and LDFLAGS in Makefile.PL.
    CCFLAGS and LDFLAGS need to be split into words, not characters
    Thanks to Colin Watson <email address hidden> (Closes: #648955)

  [ Dominic Hargreaves ]
  * Swap libextutils-parsexs-perl/perl alternate build-dependency around
    following migration of perl 5.14 to unstable so that it can be
    autobuilt

 -- Dominic Hargreaves <email address hidden>  Thu, 17 Nov 2011 19:37:44 +0000

Upload details

Uploaded by:
Debian Perl Group
Uploaded to:
Sid
Original maintainer:
Debian Perl Group
Architectures:
any
Section:
perl
Urgency:
Low Urgency

See full publishing history Publishing

Series Pocket Published Component Section

Downloads

File Size SHA-256 Checksum
libcrypt-dh-gmp-perl_0.00009-5.dsc 1.6 KiB 496407086876ada16fb6365a87baf38ba29d838fd31a7283c37d93703433cf84
libcrypt-dh-gmp-perl_0.00009.orig.tar.gz 72.0 KiB ebfbcf2630f6a85b63cd87585d301442f43c91df71d214f7ec325d41a7617ab9
libcrypt-dh-gmp-perl_0.00009-5.debian.tar.gz 3.4 KiB 4bbc2e291bbced9a4396791b03ebf4d257efa77edc40c3e1c1b9da63e878fe5e

No changes file available.

Binary packages built by this source

libcrypt-dh-gmp-perl: Crypt::DH replacement that uses GMP directly

 Crypt::DH::GMP is a (somewhat) portable replacement to Crypt::DH, implemented
 mostly in C.
 .
 In the beginning, there was Crypt::DH. However, Crypt::DH suffers from a
 couple of problems: GMP/Pari libraries are almost always required; Crypt::DH
 additionally has Math::BigInt in between GMP. Instantiating an object
 comes with a relatively high cost, and if you make many computations in one
 go, your program will suffer dramatically because of this.
 .
 Crypt::DH::GMP attempts to alleviate these problems by providing a
 Crypt::DH-compatible layer, which, instead of doing calculations via
 Math::BigInt, directly works with libgmp in C.
 .
 This means that essentially 2 call stacks worth of expensive Perl method
 calls are eliminated and also only load 1 (Crypt::DH::GMP) module instead of
 3 (Crypt::DH + Math::BigInt + Math::BigInt::GMP) is needed.
 .
 These add up to a fairly significant increase in performance.