SEARCH
NEW RPMS
DIRECTORIES
ABOUT
FAQ
VARIOUS
BLOG

 
 
Changelog for perl-Digest-SHA-6.02-2.1.x86_64.rpm :
Sun Apr 22 14:00:00 2018 cooloAATTsuse.com
- updated to 6.02
see /usr/share/doc/packages/perl-Digest-SHA/Changes

Tue Dec 26 13:00:00 2017 cooloAATTsuse.com
- updated to 6.01
see /usr/share/doc/packages/perl-Digest-SHA/Changes
6.01 Mon Dec 25 00:08:08 MST 2017
- added \"--ignore-missing\" and \"--strict\" options to shasum
- - consistent with GNU coreutils
- - ref. rt.cpan.org #123897
- removed PERL_CORE preambles from test scripts
- - preambles no longer needed for core testing
- - thanks to Chris Williams for patch
- - ref. rt.cpan.org #123863

Sun Dec 10 13:00:00 2017 cooloAATTsuse.com
- updated to 6.00
see /usr/share/doc/packages/perl-Digest-SHA/Changes
6.00 Fri Dec 8 22:44:44 MST 2017
- added \"tag\" option (BSD-style checksums) to shasum
- - consistent with GNU sha1sum, sha224sum, etc.
- - thanks to Christopher Tubbs for suggestion
- modified SHA.pm to use XSLoader
- - falls back to DynaLoader if necessary
- decoupled Digest::SHA and Digest::SHA::PurePerl
- - scripts/tests in each module now fully independent
- - Digest::SHA::PurePerl to be phased out eventually
- - past versions will remain available

Sun Oct 8 14:00:00 2017 cooloAATTsuse.com
- updated to 5.98
see /usr/share/doc/packages/perl-Digest-SHA/Changes
5.98 Wed Oct 4 00:40:02 MST 2017
- removed \"portable\" mode from shasum and addfile
- - rarely used, mostly in outdated systems
- - potentially confusing features
- - Universal Newlines mode (-U) a much cleaner approach
- - mimics Universal Newlines in Python
- shasum now uses Digest::SHA explicitly
- - no longer loads Digest::SHA::PurePerl as an option
- - hence no need for -R switch
- - Digest::SHA::PurePerl has its own shasum: shasumpp

Thu Sep 7 14:00:00 2017 cooloAATTsuse.com
- updated to 5.97
see /usr/share/doc/packages/perl-Digest-SHA/Changes
5.97 Wed Sep 6 02:23:02 MST 2017
- added \'quiet\' option to shasum
- - thanks to Chris David for suggestion and initial patch
- - ref. rt.cpan.org #122750
- expanded shasum --help message
- - to explain use of escaped FILE names

Fri Jul 29 14:00:00 2016 cooloAATTsuse.com
- updated to 5.96
see /usr/share/doc/packages/perl-Digest-SHA/Changes
5.96 Wed Jul 27 20:04:34 MST 2016
- prevented shasum from possibly running malicious code
- - remove \'.\' from AATTINC before module loading
- - ref. rt.cpan.org #116513
- namespace cleanup (ref. rt.cpan.org #105371 and #105372)
- minor code and documentation tweaks

Wed Apr 22 14:00:00 2015 cooloAATTsuse.com
- updated to 5.95
see /usr/share/doc/packages/perl-Digest-SHA/Changes
5.95 Sat Jan 10 12:15:36 MST 2015
- modified the bit-ordering test (ref. t/bitorder.t)
- - supplied directory-change preamble for CORE builds
5.94 Sat Jan 10 00:45:28 MST 2015
- added support for threaded builds
- - PERL_GET_NO_CONTEXT, pTHX_, aTHX_, etc.
- - employed \'const\' storage class where possible
- - ref. rt.cpan.org #101260
- simplified shabits() routine (bitwise input buffering)
- - slightly less efficient but easier to understand
- - ref. rt.cpan.org #101344
- minor documentation tweaks and additions
5.93 Sun Oct 26 06:00:48 MST 2014
- corrected alignment problem in SHA struct (src/sha.h)
- - thanks to H. Merijn Brand and J. Hietaniemi for
analysis and suggested patch
- provided workaround in t/methods.t for unreliable -T test
- - Some Perl 5.8\'s mistake text for binary
5.92 Sun Jun 1 00:15:44 MST 2014
- fixed reserved-word clash when compiling with C++
- - use \'classname\' instead of \'class\'
- - ref. SHA.xs (rt.cpan.org #96090)
- silenced MSC compiler warning about signed/unsigned comparison
- - ref. SHA.xs (rt.cpan.org #95830)
5.91 Fri May 16 10:21:44 MST 2014
- restored original \'addfile\' for use on opened file handles
- - allows callbacks in place of actual files
- - ref. IO::Callback (rt.cpan.org #95643)
- re-established inheritance from Digest::base
- - to pick up future Digest enhancements automatically
- cleaned up documentation
5.90 Wed May 7 07:57:08 MST 2014
- consolidated all dynamic memory allocation into XSUBs
- - streamlines referencing of SHA objects
- - simplifies DESTROYing of objects
- enhanced Makefile.PL to allow \'use warnings\'
- - automatically reverts to $^W for early Perls
- scrubbed C and Perl code to remove all compiler warnings
5.89 Sat Apr 19 05:14:48 MST 2014
- added universal newlines mode (\"U\") to addfile and shasum
- - based on Python Universal Newlines concept
- - newlines identical across MacOS, DOS, and UNIX
- - will deprecate portable mode (\"p\") in future
- - \"U\" mode is cleaner and more efficient
- enhanced performance
- - reduced number of dynamic memory allocations
- - sped up addfile method with use of C code
- - ref. SHA.xs (_addfilebin and _addfileuniv)
- eliminated experimental -M option in favor of new -R option
- - reverses order of digest module preference
- - undocumented: for test and development use only
- sealed memory leak in SHA.xs
- - arose only with SvPVbyte exceptions during eval
- patched inheritence bug (ref: rt.cpan.org #94830)
- - use sv_isobject/sv_derived_from instead of sv_isa
- added \'allocated\' flag to SHA structure (ref. src/sha.h)
- - to guard against Perl double frees
5.88 Mon Mar 17 08:46:10 MST 2014
- added OUTPUT clause in SHA.xs to silence compiler warning
- - ref. shaclose()
- changed text file test (-T) to act on filehandles
- - ref. addfile portable mode
- - improves consistency when reading from STDIN
- - still must act on filenames for early Perls (< 5.6)
- added -M and -V options to shasum
- - undocumented: for development and testing use only
5.87 Mon Feb 17 16:42:02 MST 2014
- simplified capture of intermediate SHA states
- - can now be done via strings (ref. getstate/putstate)
- - substantially reduces size of src/sha.c
- tightened code in SHA.xs
- - added sv_isa checks when invoking methods
5.86 Thu Jan 30 08:24:28 MST 2014
- improved the performance of hexadecimal output functions
- - ref. \'shahex\' in src/sha.c
- - thanks to Thomas Drugeon for ideas and test script
5.85 Wed Jun 26 04:05:26 MST 2013
- workaround for repeated calls to shaclose (ref. Bug #86295)
- - need to explicitly reset internal pointer to NULL
ref. shaclose() in SHA.xs
- corrected typos in shasum script
- - ref. Bug #85430
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

Fri Feb 1 13:00:00 2013 larsAATTlinux-schulserver.de
- updated to 5.82 (fixes bnc #798544)
- introduced workaround to SvPVbyte bug in Perl 5.6 module behavior
now consistent under all Perls 5.6+
- 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
- provided documentation to describe Unicode handling
- updated documentation of NIST statement on SHA-1
- corrected load subroutine (SHA.pm) to prevent double-free
Bug #82655: Security issue - segfaul
- obtained noticeable speedup on Intel/gcc by setting -O1 and
- fomit-frame-pointer
- handle wide-string input by converting to bytes first
- provided workaround for DEC compiler bug (ref. Makefile.PL)
- prevented $! from getting clobbered in _bail() routine
- added example of BITS mode usage to shasum documentation

Wed Feb 15 13:00:00 2012 cooloAATTsuse.com
- updated to 5.70
- 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

Wed Feb 15 13:00:00 2012 cooloAATTsuse.com
- update to 5.63
- 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

Tue May 17 14:00:00 2011 pascal.bleserAATTopensuse.org
- update to 5.62:
- removed unnecessary loading of MIME::Base64 module

Fri Apr 22 14:00:00 2011 cooloAATTopensuse.org
- updated to 5.61
- 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
- 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
- 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
- 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
- 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

Wed Dec 1 13:00:00 2010 cooloAATTnovell.com
- switch to perl_requires macro

Sat Jul 25 14:00:00 2009 chrisAATTcomputersalat.de
- spec mods

* removed ^----------

* removed ^#---------

Sun Jun 21 14:00:00 2009 chrisAATTcomputersalat.de
- added perl-macros
o autogen filelist with perl_gen_filelist
- spec mods
o added header
o fixed deps


 
ICM