in reply to Protection for Perl Scripts

Simply use Acme::Bleach; and be done with it.

Read more about Acme::Bleach. Basically it turns all your code into "non-printable characters" (like spaces and tabs) to help prevent tampering.

After running your code with a use Acme::Bleach; statement in there, it will look like this:

use Acme::Bleach; # Nothing else below.

Replies are listed 'Best First'.
Re^2: Protection for Perl Scripts
by Anonymous Monk on Jul 12, 2010 at 17:34 UTC
    Meh.

    Filters w/ stronger encryption have already be discussed above. This just provides a visually interesting result.