Security vulnerability with Encrypted Classes (example)
I'm posting here as an FYI -- encrypted classes in JSL are not secure. I recommend only using functions and not classes, as functions are not vulnerable to this. The issue lies in the fact that JMP classes are introspective, while compiled functions are not. Consider the following class with that contains a method I'd really like to keep secret:Define Class(
"complex",
real = 0;
imag = 0;
_i
...