ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/Crypt-Twofish2/Changes
Revision: 1.1
Committed: Sat Sep 6 22:10:54 2003 UTC (20 years, 8 months ago) by root
Branch: MAIN
Log Message:
*** empty log message ***

File Contents

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