MATLAB: How good is the Code encrypted by the compiler

compilerencryptionMATLAB Compiler

On MatLab's website I found following statement.
"MATLAB Compiler encrypts your MATLAB programs to protect your intellectual property, so your source code remains hidden from end users of your applications." (https://www.mathworks.com/products/compiler/features.html)
Now I'm looking for more in-depth information about the encrytion!
1. Which kind of encrypting do they use?
2. Is it possible to get my entire code back?
It was written in simple m,mlx & mlpp files.
3. How much time do I have to spend in to get this information?

Best Answer

AES encryption is used.
You cannot get your code back. It is parsed into internal data structures and those data structures are encrypted.
It is not known as to whether Mathworks has a tool that could reconstruct equivalent code.