newLISP Fan Club

Forum => newLISP newS => Topic started by: ale870 on December 18, 2008, 05:40:43 AM

Title: Save newLisp program as bytecode
Post by: ale870 on December 18, 2008, 05:40:43 AM
Hello,



I know that newLisp compile (byte-code ) the source code.

Is there any way to save this bytecode, in order to load it later, without recompiling it?



More: I need to "hide" the program (not newLisp app, but my app made in newLisp self), since I need to distribute it. Can you suggest me a way to do this?

(I wish to avoid reverse engineering my newLisp code).



Thank you.
Title:
Post by: cormullion on December 24, 2008, 02:04:24 AM
No answers here - I can't see any mention of byte-code anywhere....
Title:
Post by: ale870 on December 24, 2008, 05:48:52 AM
Yes I see... but I think that a way to save precompiled code and another way to avoid reverse engineering could be useful too.
Title:
Post by: Lutz on December 24, 2008, 06:00:50 AM
This also does a simple encryption of the source when linking:



http://www.newlisp.org/downloads/newlisp_manual.html#linking
Title:
Post by: ale870 on December 24, 2008, 06:20:43 AM
Thank you Lutz, this could be a good solution.

Is there any way to make such link and execute another script during execution?

For example I could encrypt source code with a strong password, then I link it to the executable, but I need to decrypt it before running.
Title:
Post by: Lutz on December 24, 2008, 09:25:22 AM
Look into the file link.lsp. Its not a strong scheme, just enough to deter the casual non-programmer user. Anybody knowing newLISP and looking into link.lsp will be able to unlock the linked source.
Title:
Post by: ale870 on December 24, 2008, 04:32:16 PM
Thank you!

I will modify it to accept a user input as a password to decrypt newlisp file ;-)