Link to home
Start Free TrialLog in
Avatar of curiouswebster
curiouswebsterFlag for United States of America

asked on

Need to hide Objective-C code from other developers

I want to have my developer write an algorithm which generates a secret key used to authenticate my iPhone app's data files.  But I want to change it before the program ships so I can keep the secret closely held.

When my Xcode developer gets latest source code, I want the program to work fully for him, but I do not want him to have the source code I modified to ensure my algorithm's secrecy.

In Windows, I'd write a DLL and make sure to add that DLL to source control.  But I would keep the source on some other platform.

How do I do this with Objective-C?

Thanks.
ASKER CERTIFIED SOLUTION
Avatar of arnold
arnold
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of curiouswebster

ASKER

Thanks.