Can a script m-file be encrypted?
3 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
John Miller
am 11 Nov. 2016
Beantwortet: Walter Roberson
am 11 Nov. 2016
Can all or part of a script m-file be encrypted and still be usable in MATLAB?
0 Kommentare
Akzeptierte Antwort
Walter Roberson
am 11 Nov. 2016
You have three options:
1) Use pcode which obfuscates code (makes it more difficult to access and understand) but does not actually encrypt it.
2) Use MATLAB Compiler to compile everything. MATLAB Compiler encrypts using AES.
3) Use your own encryption scheme. It will be necessary to decrypt the code before it can be executed.
0 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu MATLAB Compiler finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!