[lnkForumImage]
TotalShareware - Download Free Software

Confronta i prezzi di migliaia di prodotti.
Asp Forum
 Home | Login | Register | Search 


 

Forums >

comp.lang.ruby

Encrypt ruby source code

Joe Black

9/26/2006 6:39:00 AM

Hi all
any one know how to encrypt ruby source code.
regards

--
Posted via http://www.ruby-....

10 Answers

Harold Hausman

9/26/2006 6:48:00 AM

0

On 9/26/06, Joe Black <allenbobo@gmail.com> wrote:
> Hi all
> any one know how to encrypt ruby source code.
> regards

How about this?
http://www.rubyquiz.com/q...

>
> --
> Posted via http://www.ruby-....
>

Shocking.

>

hth,
-Harold

Paul Lutus

9/26/2006 6:53:00 AM

0

Joe Black wrote:

> Hi all
> any one know how to encrypt ruby source code.

There are dozens of ways. But after it's encoded, it can't be executed my
more. What was your actual question?

--
Paul Lutus
http://www.ara...

Joe Black

9/26/2006 7:49:00 AM

0

I want supply a web app to third party,
but don't want tell them my source code.
what can i do?
any suggestion

regards

Paul Lutus wrote:
> Joe Black wrote:
>
>> Hi all
>> any one know how to encrypt ruby source code.
>
> There are dozens of ways. But after it's encoded, it can't be executed
> my
> more. What was your actual question?


--
Posted via http://www.ruby-....

Paul Lutus

9/26/2006 9:10:00 AM

0

Joe Black wrote:

> I want supply a web app to third party,
> but don't want tell them my source code.
> what can i do?

Don't use Ruby. Even if you provide the source encrypted, you have to
unencrypt it for Ruby to execute it, and at that point a hacker could
intervene and examine the plain-text source.

Ruby (as an interpreted language) is simply not meant for this kind of
closed-source, proprietary commercial activity.

One option that comes to mind is a project that converts Ruby source into an
executable package in native code. Unfortunately, now I cannot find a
reference to it. Maybe someone else can provide a reference.

--
Paul Lutus
http://www.ara...

Harold Hausman

9/26/2006 9:22:00 AM

0

On 9/26/06, Paul Lutus <nospam@nosite.zzz> wrote:
> Joe Black wrote:
>
> > I want supply a web app to third party,
> > but don't want tell them my source code.
> > what can i do?
>

...

>
> One option that comes to mind is a project that converts Ruby source into an
> executable package in native code. Unfortunately, now I cannot find a
> reference to it. Maybe someone else can provide a reference.
>
> --
> Paul Lutus

Paul,

You're likely thinking of RubyScript2Exe:
http://www.erikveen.dds.nl/rubyscript2exe/...

Which, while very sweet doesn't necessarily play nicely as a webapp
which the OP mentions his project is.

I really believe that if your app is commercially viable, you're
probably going to be selling it to people that will respect it's
license so just release it under a license that protects you
financially. Or do it in another language that supports you selling
your code to knaves. heh.

-Harold

David Roberts

9/26/2006 9:23:00 AM

0

Joe Black wrote:
> Hi all
> any one know how to encrypt ruby source code.
> regards

Some reading:

http://www.erikveen.dds.nl/rubys...

http://blog.zenspider.com/archives/zen...

--
Posted via http://www.ruby-....

Tom Pollard

9/26/2006 2:49:00 PM

0


On 9/26/06, Paul Lutus <nospam@nosite.zzz> wrote:
>> One option that comes to mind is a project that converts Ruby
>> source into an
>> executable package in native code. Unfortunately, now I cannot find a
>> reference to it. Maybe someone else can provide a reference.

On Sep 26, 2006, at 5:21 AM, Harold Hausman wrote:
> You're likely thinking of RubyScript2Exe:
> http://www.erikveen.dds.nl/rubyscript2exe/...

It should be pointed out that this is NOT a compiler. What I believe
it does is to create an executable archive containing your script,
the ruby executable, and any dependent modules and libraries it needs
to execute your script. When you run the resulting package, the
archive is unpacked into a temporary directory and the bundled ruby
interpreter is used to execute your script. There are a number of
similar tools for perl and python that work this way (perlapp, PAR,
perl2exe, py2exe, py2app, ...).


> I really believe that if your app is commercially viable, you're
> probably going to be selling it to people that will respect it's
> license so just release it under a license that protects you
> financially. Or do it in another language that supports you selling
> your code to knaves. heh.

That's really the bottom line, here. Scripting languages are
inherently open-source. Big and medium-sized companies have lawyers
who make sure their companies don't put themselves in legal jeopardy
by violating software licensing agreements.


TomP

ralf

9/26/2006 3:19:00 PM

0

Joe Black schrieb:

> Hi all
> any one know how to encrypt ruby source code.
> regards
>

Hi Joe,
encoding you code to protect your intellectual property seems to be a
good thing. But I do not expect it to realy work:
1. Security by obfuscation is surely not the ultimate weapon. You
cannot be sure, that the obfuscation work. A skilled Hacker can get
the code out of a compiled C- or Java-library.
2. How do you check the integrity of your code? If it's encoded, you
propably need the knowledge of other people, you HAVE to trust. If it's
text, you can do that on your own.
3. Where is the key to decode your app? It propalby lies on the same
machine, where the app should run. this leads to -->>
4. On what OS should your app run? Is it secure enough?
5. Does the company have a policy, what to do while a break-in is
detected? Does they detect that anyway?
.
.
.
N. You cannot be sure, so choose a license, that fits your needs and
distribute exactly what you've coded: text.

best regards
Ralf

Bill Kelly

9/26/2006 3:19:00 PM

0

From: "Paul Lutus" <nospam@nosite.zzz>
>
> One option that comes to mind is a project that converts Ruby source into an
> executable package in native code. Unfortunately, now I cannot find a
> reference to it. Maybe someone else can provide a reference.

Ruby2CExtension: http://ruby2cext.ruby...


I haven't tried it yet, myself. . . . But if one's code doesn't
run afoul of any of the limitations,
( http://ruby2cext.ruby...limitations.html ), then ruby2cext
sounds like a genuine solution to the problem.


Regards,

Bill



Charles O Nutter

9/26/2006 3:27:00 PM

0

On 9/26/06, Tom Pollard <tomp@earthlink.net> wrote:
> That's really the bottom line, here. Scripting languages are
> inherently open-source. Big and medium-sized companies have lawyers
> who make sure their companies don't put themselves in legal jeopardy
> by violating software licensing agreements.

I disagree with the open-source assertion. JRuby will soon support
pre-parsing libraries into an intermediate format that's difficult
(but obviously not impossible) to reverse back to code. We're also
working on a compiler to Java bytecode that would make the original
source completely unnecessary and extremely difficult to produce. It's
all in your definition of "open" of course, but there's perfectly
valid cases for providing compiled dynamic-language applications
without loose source files.

--
Contribute to RubySpec! @ www.headius.com/rubyspec
Charles Oliver Nutter @ headius.blogspot.com
Ruby User @ ruby.mn