Ask a Question related to PERL Beginners, Design and Development.
-
Dan Brow #1
binary perl
Is it possible to make a perl script/program a binary file? I have a few
scripts some one wants but I don't want them to have the source. I
tried perlcc but I want it to remain perl not c, if that's possible or
realistic.
thanks,
Dan.
Dan Brow Guest
-
filestream binary
I am attempting to create a webservice that pushes back a binary file by request type.. Suggestions? -
Off Topic: Active Perl Native Windows / cygwin perl
I have both activestate windows native perl installed and the default cygwin perl. How can I have the cygwin shell use the windows perl rather... -
CGI php Binary
Hi; I appologize in advance to purists who think the question is an appache one, or a mysql question. I have a virtual domain hosted by... -
Optimising performance of Perl binary
Hi, currently we are hosting a Perl 5.6.1 based Intranet application on a Sun 6x750MHz v880/Solaris 8 (64bit) server. The application performs a... -
64 bit binary and 32 bit binary have different result. Is it library bug or compiler bug?
#include <errno.h> #include <stdlib.h> #include <string.h> #include <stdio.h> #include <dirent.h> #include <assert.h> int main(int argc, char... -
Wiggins D'Anconia #2
Re: binary perl
Dan Brow wrote:
perldoc -q 'hide the source'> Is it possible to make a perl script/program a binary file? I have a few
> scripts some one wants but I don't want them to have the source. I
> tried perlcc but I want it to remain perl not c, if that's possible or
> realistic.
>
> thanks,
>
> Dan.
>
>
[url]http://danconia.org[/url]
Wiggins D'Anconia Guest
-
Bob Showalter #3
Re: binary perl
Dan Brow wrote:
For bundling, yes. For hiding source, not really.> Is it possible to make a perl script/program a binary file?
Use Acme::Bleach> I have a
> few scripts some one wants but I don't want them to have the source.
> I tried perlcc but I want it to remain perl not c, if that's possible
> or realistic.
[url]http://search.cpan.org/~dconway/Acme-Bleach-1.12/lib/Acme/Bleach.pm[/url]
Bob Showalter Guest
-
Dan Anderson #4
Re: binary perl
On Fri, 2004-01-23 at 20:44, Dan Brow wrote:
There is an experimental perl compiler. It's not recommended for> Is it possible to make a perl script/program a binary file?
production use but is a cool toy. When Perl 6 comes out that will all
change though...
-Dan
Dan Anderson Guest
-
Tim Johnson #5
RE: binary perl
Short answer: No. There are programs like PerlApp that will package the interpreter with your code and make it into an executable file, but anyone who is determined enough can still get your source from the computer's memory. Your best bet is the old "security by obscurity" approach of either making your source look like gibberish or "invisible" via one of the ACME or shroud modules. If you look through the ActiveState PDK mailing list archives there are volumes on the subject.
-----Original Message-----
From: Dan Brow [mailto:fms@istop.com]
Sent: Fri 1/23/2004 5:44 PM
To: [email]beginners@perl.org[/email]
Cc:
Subject: binary perl
Is it possible to make a perl script/program a binary file? I have a few
scripts some one wants but I don't want them to have the source.
Tim Johnson Guest
-
Dan Brow #6
Re: binary perl
What's the perl compiler called?
On Sat, 2004-01-24 at 18:13, Dan Anderson wrote:> On Fri, 2004-01-23 at 20:44, Dan Brow wrote:>> > Is it possible to make a perl script/program a binary file?
> There is an experimental perl compiler. It's not recommended for
> production use but is a cool toy. When Perl 6 comes out that will all
> change though...
>
> -Dan
>Dan Brow Guest
-
Tim Johnson #7
RE: binary perl
perldoc perlcc
-----Original Message-----
From: Dan Brow [mailto:fms@istop.com]
Sent: Friday, January 30, 2004 11:03 AM
To: Perl Beginners
Subject: Re: binary perl
What's the perl compiler called?
On Sat, 2004-01-24 at 18:13, Dan Anderson wrote:> On Fri, 2004-01-23 at 20:44, Dan Brow wrote:>> > Is it possible to make a perl script/program a binary file?
> There is an experimental perl compiler. It's not recommended for
> production use but is a cool toy. When Perl 6 comes out that will all> change though...
>
> -Dan
>
--
To unsubscribe, e-mail: [email]beginners-unsubscribe@perl.org[/email] For additional
commands, e-mail: [email]beginners-help@perl.org[/email] <http://learn.perl.org/>
<http://learn.perl.org/first-response>
Tim Johnson Guest



Reply With Quote

