create a function while protecting it's code

1 vue (au cours des 30 derniers jours)
nathan blanc
nathan blanc le 15 Sep 2020
Commenté : nathan blanc le 16 Sep 2020
i am working towards publishing my code. while most of it i hope to publish as an open source code, there is one function that i would like to leave protected and encrypted. i understood that there are three options:
a. publishing a p-code- I understand this option is insecure and not reccomended
b. password protecting my file- could that really work? wouldn't that be easy to by-pass by a skilled matlab person is there a secure function that does that?
c. compile creating a stand-alone file. my problem with this is that (i think) such a stand-alone file would be difficult to implement as part of a general, open-source matlab code. would it be possible? is it possible to create an executable file that communicates well with matlab? would be thankfull for any examples or references
many thanks
Nathan

Réponse acceptée

Ameer Hamza
Ameer Hamza le 16 Sep 2020
I think you can try to create a mex function using MATLAB coder. It compiles your MATLAB code using C or C++ compiler and converts it into a binary file. However, you can directly run it insider MATLAB like a normal function. The MATLAB source code is not accessible through mex file.
  3 commentaires
Ameer Hamza
Ameer Hamza le 16 Sep 2020
If you have MATLAB code, then go to the APPS tab and open the MATLAB coder app. The App provides a pretty intuitive workflow to generate the mex file. This link will also be helpful: https://www.mathworks.com/help/coder/ug/how-to-generate-mex-functions-using-the-matlab-coder-project-interface.html
nathan blanc
nathan blanc le 16 Sep 2020
thanks!

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur MATLAB Compiler dans Help Center et File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by