we are developing some signal process algorithm on mobile platform, using C language, but we want to keep the algo a secret to lower the source code leakage risk.
how can i provide the algo to iOS and Android to meet this requirement?
we are developing some signal process algorithm on mobile platform, using C language, but we want to keep the algo a secret to lower the source code leakage risk.
how can i provide the algo to iOS and Android to meet this requirement?
You can use a obfuscator to make it harder to decompile your code, but this only makes it harder to reverse re-engeneer the algorithm.
Depending on the setting you can also move the code from the app/iOS program into a web-service. This way the code would only be present on the host that runs the service which is 100% under you control. Disadvantages are: