Hi,
If you want to encrypt the content of a file using
Crypt::Blowfish, you can slurp it, and pass the cypher as it where a "normal scalar", and then you can handle the content writing it back to disk, sending it, etc.
You can deal with files as large as you want, given the required system resources.
As Crypt::Blowfish relies on an external C library (Blowfish.so) it is faster than the "Pure Perl" implementation,
Crypt::Blowfish_PP
Update: Sorry about this. I did not explained as i should. I was meaning that when encrypting with Blowfish, it does not matter weather you use text coming from a string, file or whatever, thinking always about chunking it before attempting to encrypt it. As it has been replied, you need to split the content as you encrypt it, but i was centered on the no limitation for the size of the file being encrypted, and the possibility of this module for handling unlimited chunks of data.