1 |
Revision history for Perl extension Crypt::Twofish2 |
2 |
|
3 |
1.0 Wed Jul 14 17:55:13 CEST 2004 |
4 |
- minor spelling mistakes. |
5 |
- pad result with trailing (hidden) zero-byte to please regex code |
6 |
(problem reported by Andreas König). |
7 |
|
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 |
|