libcrypt-dh-gmp-perl 0.00009-4ubuntu1 source package in Ubuntu

Changelog

libcrypt-dh-gmp-perl (0.00009-4ubuntu1) precise; urgency=low

  * Fix splitting of CCFLAGS and LDFLAGS in Makefile.PL; these need to be
    split into words, not characters.
 -- Colin Watson <email address hidden>   Wed, 16 Nov 2011 11:34:52 +0000

Upload details

Uploaded by:
Colin Watson
Uploaded to:
Precise
Original maintainer:
Ubuntu Developers
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.orig.tar.gz 72.0 KiB ebfbcf2630f6a85b63cd87585d301442f43c91df71d214f7ec325d41a7617ab9
libcrypt-dh-gmp-perl_0.00009-4ubuntu1.debian.tar.gz 3.2 KiB fc5d64c0f1296615288cec4a46103cdc0981039d9b39dee05fa5375303efbbd4
libcrypt-dh-gmp-perl_0.00009-4ubuntu1.dsc 2.3 KiB 87c4e9818c0f014de6929ed1d54bcfed32fe892645d7a866ce8d3666267ecc0e

Available diffs

View changes file

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.