I know that hardcoding passwords into a program is something insecure by nature. Most of them can be cracked by reverse engineering tools such as IDA Pro. However, if one had no choice other than to do so, would there be a secure way to do it?
I need to release a small Java client app to a small group of users and need to hardcode an authentication token. Any advice?
Thanks
If you must, Java has a
GuardedStringclass, similar to theSecureStringclass in C#.