How can I protect a public script from being changed?

조회 수: 5 (최근 30일)
David Koenig
David Koenig 2018년 8월 7일
편집: David Koenig 2018년 8월 7일
I write scripts that I would like other Matlab users to run but I do not want them to be able to modify it. Is there a way to protect a script that I make public?
  댓글 수: 1
Adam
Adam 2018년 8월 7일
doc pcode
can probably help with this if you turn it into a function.

댓글을 달려면 로그인하십시오.

채택된 답변

OCDER
OCDER 2018년 8월 7일
Perhaps convert your code to p-code to discourage modifying your codes. It is NOT a full protection for modifying your codes though.
Complete protection against modification is tricky. This would require compiling your code via something like mcc, and if you really want, adding some security checks against modification / reverse engineering (that's above my skill set). But then, its not really usable via Matlab sessions.
I think p-code is what you're aiming for.

추가 답변 (1개)

David Koenig
David Koenig 2018년 8월 7일
편집: David Koenig 2018년 8월 7일
Thanks to Adam and OCDER.

카테고리

Help CenterFile Exchange에서 Programming에 대해 자세히 알아보기

제품


릴리스

R2012a

Community Treasure Hunt

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

Start Hunting!

Translated by