In my application i store a key the encrypts and decrypts data, it is stored as a string define
#define ClientSecret @"123456"
This value is easy accessible when the app is decompiled... How to protect it at the best extend?
The value doesn't needs to be a define... is there some recommended approach to ensure safety of such values, which are hard lined in code?
This question goes both for iOS and OSX