summaryrefslogtreecommitdiff
path: root/gnu/usr.bin/perl/cpan/Digest-SHA/Changes
diff options
context:
space:
mode:
Diffstat (limited to 'gnu/usr.bin/perl/cpan/Digest-SHA/Changes')
-rw-r--r--gnu/usr.bin/perl/cpan/Digest-SHA/Changes118
1 files changed, 0 insertions, 118 deletions
diff --git a/gnu/usr.bin/perl/cpan/Digest-SHA/Changes b/gnu/usr.bin/perl/cpan/Digest-SHA/Changes
index 98915238731..ad5bd06b359 100644
--- a/gnu/usr.bin/perl/cpan/Digest-SHA/Changes
+++ b/gnu/usr.bin/perl/cpan/Digest-SHA/Changes
@@ -1,123 +1,5 @@
Revision history for Perl extension Digest::SHA.
-5.84 Sat Mar 9 17:36:08 MST 2013
- - untweaked Makefile.PL to remove dependencies of SHA.c
- -- dependencies were breaking builds on VMS
- -- retaining dependencies provides too little benefit
- for cost of portable workaround
-
-5.83 Mon Mar 4 08:12:00 MST 2013
- - removed code for standalone C operation (no longer used)
- -- eliminates need for external symbols
- -- consolidates SHA and HMAC code
- -- reduces size of object files
- -- thanks to Marc Lehmann for suggestions
- - tweaked Makefile.PL to show dependencies of SHA.c
-
-5.82 Thu Jan 24 04:54:12 MST 2013
- - introduced workaround to SvPVbyte bug in Perl 5.6
- -- module behavior now consistent under all Perls 5.6+
- -- ref: new test script t/unicode.t
- -- SHA routines now always croak on wide chars (5.6+)
- - removed "static" message schedules from C code
- -- default "auto" is now just as fast
- -- thread-safe option (-t) no longer necessary
- -- still allowed, but ignored
- -- simplifies source and header files
- -- eliminates SHA_STO_CLASS and SHA_THREAD_SAFE
- -- ref. Bug #82784
- -- thanks to Steve Hay for initial patch
- - provided documentation to describe Unicode handling
- -- ref: Bug #82378
- - updated documentation of NIST statement on SHA-1
-
-5.81 Mon Jan 14 05:17:08 MST 2013
- - corrected load subroutine (SHA.pm) to prevent double-free
- -- Bug #82655: Security issue - segfault
- -- thanks to Victor Efimov and Nicholas Clark
- for technical expertise and suggestions
-
-5.80 Mon Dec 10 14:15:26 MST 2012
- - obtained noticeable speedup on Intel/gcc
- -- by setting -O1 and -fomit-frame-pointer
- -- SHA-1 about 63% faster, SHA-2 improves 11-20%
-
-5.74 Sat Nov 24 03:10:18 MST 2012
- - handle wide-string input by converting to bytes first
- -- viz. use SvPVbyte instead of SvPV in SHA.xs
- -- thanks to Eric Brine for summary and code
-
-5.73 Wed Oct 31 04:32:44 MST 2012
- - provided workaround for DEC compiler bug (ref. Makefile.PL)
-
-5.72 Mon Sep 24 15:22:08 MST 2012
- - adjusted module installation directory for later Perls
- -- As of 5.11 Perl searches 'site' first, so use that
- -- ref. INSTALLDIRS in Makefile.PL
- -- thanks to Robert Sedlacek for patch
-
-5.71 Wed Feb 29 04:06:10 MST 2012
- - prevented $! from getting clobbered in _bail() routine
- -- thanks to Zefram for patch
- - added example of BITS mode usage to shasum documentation
-
-5.70 Wed Dec 14 02:32:10 MST 2011
- - added BITS mode to addfile method and shasum
- -- partial-byte inputs now possible via files/STDIN
- -- allows shasum to check all 8074 NIST Msg vectors
- -- previously required special programming
-
-5.63 Tue Nov 8 02:36:42 MST 2011
- - added code to allow very large data inputs all at once
- -- previously limited to several hundred MB at a time
- -- many thanks to Thomas Drugeon for his elegant patch
- - removed outdated reference URLs from several test scripts
- -- these URLs aren't essential, and often go stale
- -- thanks to Leon Brocard for spotting this
- -- ref. rt.cpan.org #68740
-
-5.62 Sat May 14 04:00:34 MST 2011
- - removed unnecessary loading of MIME::Base64 module
- -- thanks to dolmen for pointing this out
-
-5.61 Wed Mar 9 05:26:36 MST 2011
- - corrected bug in 'algorithm' method
- - fixed -x option in Makefile.PL
- -- not often used since it deliberately excludes
- all 64-bit SHA transforms
- - addressed minor documentation oversights
-
-5.60 Thu Mar 3 05:26:42 MST 2011
- - added new SHA-512/224 and SHA-512/256 transforms
- -- ref. NIST Draft FIPS 180-4 (February 2011)
- - simplified shasum by removing duplicative text
- - improved efficiency of Addfile
- -- expensive -T test now occurs only in portable mode
-
-5.50 Tue Dec 14 06:20:08 MST 2010
- - adopted convention that '-' always means STDIN
- -- actual filename '-' accessed as './-'
- -- accords with behavior of sha1sum/md5sum
- - corrected undefined subroutine oversight in shasum
- -- inadvertent migration of _bail() from SHA.pm
-
-5.49 Sun Dec 12 07:22:04 MST 2010
- - modified Addfile to accept all POSIX filenames
- -- standard allows all characters except NUL and '/'
- - updated shasum to more closely mimic sha1sum/md5sum
- -- added "backslash processing" to handle newlines
- and backslashes in filenames
- -- now accepts all POSIX filenames via Addfile
- -- thanks to Sean Burke for identifying edge cases
-
-5.48 Mon Jan 4 16:32:52 MST 2010
- - fixed "shasum -a0" option (ref. rt.cpan.org #53319)
- -- incorrectly accepted 0 as a valid algorithm
- -- thanks to Zefram for patch
- - updated URL for NIST test vectors
- -- ref. files t/nistbit.t, t/nistbyte.t
- -- thanks to Leon Brocard for patch
-
5.47 Wed Apr 30 04:00:54 MST 2008
- modified Makefile.PL to install in core for Perls >= 5.10
-- thanks to Jerry Hedden for patch