| 1 |
NAME |
| 2 |
Net::FCP - http://freenet.sf.net client protocol |
| 3 |
|
| 4 |
SYNOPSIS |
| 5 |
use Net::FCP; |
| 6 |
|
| 7 |
my $fcp = new Net::FCP; |
| 8 |
|
| 9 |
DESCRIPTION |
| 10 |
SEE ALSO |
| 11 |
<http://freenet.sf.net>. |
| 12 |
|
| 13 |
BUGS |
| 14 |
Should EXPORT or EXPORT_OK the MODE constants. |
| 15 |
|
| 16 |
There should be a way to access initial IV contents :( |
| 17 |
|
| 18 |
Although I tried to make the original twofish code portable, I can't say |
| 19 |
how much I did succeed. The code tries to be portable itself, and I hope |
| 20 |
I got the endianness issues right. The code is also copyright |
| 21 |
Counterpane Systems, no license accompanied it, so using it might |
| 22 |
actually be illegal ;) |
| 23 |
|
| 24 |
I also cannot guarantee for security, but the module is used quite a |
| 25 |
bit, so there are no obvious bugs left. |
| 26 |
|
| 27 |
AUTHOR |
| 28 |
Marc Lehmann <pcg@goof.com> |
| 29 |
http://www.goof.com/pcg/marc/ |
| 30 |
|
| 31 |
The actual twofish encryption is written in horribly microsoft'ish looking |
| 32 |
almost ansi-c by Doug Whiting. |
| 33 |
|