Hello Java Folks
My software acceses to a ms access database to get some data. This database is protected by one password.
In the persistence layer of my software, I declared this password like that:
private static final String PASSWORD = "Blabla";
This simple solution is NOT secure. With any Java decompiler, I'm able to read this password from the compiled class file.
So, even if I put an encryption algorithm, everyone can read it from the decompiled class file.
Do you know a better idea?