Jump to content

HOW CAN I ENCRIPT MY PROGRAM?


danyra

Recommended Posts

 

I did a program in Autolisp, so I want to encript that in order to avoid hacks. What would you recommend me? Because I want rent it.

Im a beginner, so I dont know to much about the topic.

Thanks to much for your advices 😊

Link to comment
Share on other sites

As far as I know that will not work in LISP.

Maybe it works in VB?

 

Of course you can use confusing names of variables and functions

  • Thanks 1
Link to comment
Share on other sites

16 hours ago, danyra said:

 

I did a program in Autolisp, so I want to encript that in order to avoid hacks. What would you recommend me? Because I want rent it.

Im a beginner, so I dont know to much about the topic.

Thanks to much for your advices 😊

No offense, but is your code that special to warrant protection? The easiest way to somewhat protect lisp is to compile to a VLX using the VLIDE.

  • Thanks 1
Link to comment
Share on other sites

ronjonp either my pc is getting lazy or Autdesk has screwed its servers your page is missing, I have lost like all the Vl-addetc searches "page not found" at Autodesk support.

 

(if (>= alancount 30)
(progn
(alert "Your trial number has finished \n \n You need to contact\n \n Alanh Consulting \n \n Email  info@alanh.com.au")
(exit)
)
)

(setq loads (list "Lisp1" "Lisp2" "Lisp3"))
(setq loc1 "F:\\") ;;change dirs to where they live
(setq loc2 "F:\\Compiled Lisp\\") ; where ever you want them saved
(foreach lisp loads
(vlisp-compile 'st (strcat loc1 lisp ".lsp") (strcat loc2 lisp ".fas"))
)

 

Edited by BIGAL
Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...