You could use something like Crypt::CBC and pump all your filenames through it. This is particularly desirable if you'd like to be able to recover the filenames again later.
use strict; use warnings; my $cbc = Crypt::CBC->new( -header=>"randomiv", -key => 'my secret key +', -cipher => 'Blowfish' ); my $enc = $cbc->encrypt_hex("filename"); # recoverable hex phrase
-Paul
In reply to Re: best way to encrypt long file names?
by jettero
in thread best way to encrypt long file names?
by keiusui
| For: | Use: | ||
| & | & | ||
| < | < | ||
| > | > | ||
| [ | [ | ||
| ] | ] |