… | |
… | |
30 | |
30 | |
31 | package Crypt::Twofish2; |
31 | package Crypt::Twofish2; |
32 | |
32 | |
33 | require DynaLoader; |
33 | require DynaLoader; |
34 | |
34 | |
35 | $VERSION = '1.0'; |
35 | $VERSION = '1.01'; |
36 | @ISA = qw/DynaLoader/; |
36 | @ISA = qw/DynaLoader/; |
37 | |
37 | |
38 | bootstrap Crypt::Twofish2 $VERSION; |
38 | bootstrap Crypt::Twofish2 $VERSION; |
39 | |
39 | |
40 | =item keysize |
40 | =item keysize |
… | |
… | |
103 | I also cannot guarantee for security, but the module is used quite a bit, |
103 | I also cannot guarantee for security, but the module is used quite a bit, |
104 | so there are no obvious bugs left. |
104 | so there are no obvious bugs left. |
105 | |
105 | |
106 | =head1 AUTHOR |
106 | =head1 AUTHOR |
107 | |
107 | |
108 | Marc Lehmann <pcg@goof.com> |
108 | Marc Lehmann <schmorp@schmorp.de> |
109 | http://home.schmorp.de/ |
109 | http://home.schmorp.de/ |
110 | |
110 | |
111 | The actual twofish encryption is written in horribly microsoft'ish looking |
111 | The actual twofish encryption is written in horribly microsoft'ish looking |
112 | almost ansi-c by Doug Whiting. |
112 | almost ansi-c by Doug Whiting. |
113 | |
113 | |