ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/Crypt-Twofish2/Changes
Revision: 1.2
Committed: Wed Jul 14 15:55:44 2004 UTC (19 years, 10 months ago) by root
Branch: MAIN
Changes since 1.1: +3 -0 lines
Log Message:
*** empty log message ***

File Contents

# User Rev Content
1 root 1.1 Revision history for Perl extension Crypt::Twofish2
2    
3 root 1.2 1.0 Wed Jul 14 17:55:13 CEST 2004
4 root 1.1 - minor spelling mistakes.
5 root 1.2 - pad result with trailing (hidden) zero-byte to please regex code
6     (problem reported by Andreas König).
7 root 1.1
8     0.06 Fri Feb 23 02:12:22 CET 2001
9     - fix TWO MAJOR BUGS. First, keys with a leading zero byte
10     caused no encryption at all. Second, the keys were byte-swapped
11     on BIG-ENDIAN machines (or rather, not swapped at all).
12    
13     Both of these bugs were corrected. If you have old keys on
14     big-endian machine you can get the old behaviour by applying the
15     following regex to your key:
16    
17     $key =~ s/(.)(.)(.)(.)/$4$3$2$1/gs;
18    
19     - added more test vectors that should also catcg endianness-issues.
20     - minor portability fixes.
21    
22     0.05 Mon Feb 19 09:08:12 CET 2001
23     - workaround for the 5.004 pod anomaly.
24     - renamed twofish2.c to twofish.c to avoid name clash on the
25     lesser os's ;) actually, the old name was a bug anyway.
26    
27     0.04 Tue Jan 16 13:59:00 CET 2001
28     - better test for little endian (should work on alpha now).
29     - more(?) 5.004 compatibility (5.004 is still unsupported). I
30     wished people wouldn't insist on using ANTIQUE versions of their
31     software with my module.
32    
33     0.03 Tue Aug 1 22:05:05 CEST 2000
34     - added SvPV_nolen emulation for stoneage perls (5.5 and below).
35    
36     0.02 Sun Apr 9 02:54:32 CEST 2000
37     - use BYTEORDER form perl.h
38     - improved testsuite
39    
40     0.01 Fri Apr 7 11:24:43 CEST 2000
41     - original version; leftover "garbage" from the PApp module
42