RE: Obfusacating the source

2002-11-22 Thread Michael Robinton
I am in the process of releasing these two modules which together provide perl source obfuscation. They are not uniquely Apache oriented though I've never used them for anything else, thus the designation in Crypt. They have been used in production for over 2 years with little in the way of

Obfusacating the source

2002-11-19 Thread Francesc Guasch
I know it's not the way to go, but anyway I must do it. I need some tool that gets all the perl modules and mason components, of an application we made, and obfucaste it a little. The idea is get something just a little difficult to read, so the customer engineers have a hard time if they try to

Re: Obfusacating the source

2002-11-19 Thread John Saylor
Hi ( 02.11.19 19:48 +0100 ) Francesc Guasch: The idea is get something just a little difficult to read, so the customer engineers have a hard time if they try to read the source. Call all variables 1 char names Replace all comments with 'comment here' -- .--- ...

Re: Obfusacating the source

2002-11-19 Thread Mark Fowler
I need some tool that gets all the perl modules and mason components, of an application we made, and obfucaste it a little. See Acme::Bleach http://search.cpan.org/author/DCONWAY/Acme-Bleach/lib/Acme/Bleach.pm It works by source filtering and encoding the source as whitespace chars. (see

Re: Obfusacating the source

2002-11-19 Thread Francesc Guasch
John Saylor wrote: Hi ( 02.11.19 19:48 +0100 ) Francesc Guasch: The idea is get something just a little difficult to read, so the customer engineers have a hard time if they try to read the source. Call all variables 1 char names Replace all comments with 'comment here' That looks like what

Re: Obfusacating the source

2002-11-19 Thread Thomas Klausner
Hi! On Tue, Nov 19, 2002 at 07:08:00PM +, Mark Fowler wrote: I need some tool that gets all the perl modules and mason components, of an application we made, and obfucaste it a little. See Acme::Bleach In fact you're probably better off using Acme::EyeDrops

RE: Obfusacating the source

2002-11-19 Thread Jesse Erlbaum
Hi Francesc -- I need some tool that gets all the perl modules and mason components, of an application we made, and obfucaste it a little. The idea is get something just a little difficult to read, so the customer engineers have a hard time if they try to read the source. I have two