ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/Crypt-Twofish2/Changes
Revision: 1.4
Committed: Wed Dec 1 02:12:29 2010 UTC (13 years, 5 months ago) by root
Branch: MAIN
CVS Tags: rel-1_02
Changes since 1.3: +5 -0 lines
Log Message:
1.02

File Contents

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