I want to encrypt/hide my connection string in my database.java class. I allready searched the internet but I didn't find anything usefull, maybe I searched the wrong keywords? Here is my current code.

conn = DriverManager.getConnection("jdbc:mysql://database/db", "username", "password");

How can I hide the username and password? So only my application can see it? And you can't see it when you extract the jar?

Thanks.

link|improve this question

feedback

2 Answers

up vote 2 down vote accepted

Encrypt the connection string is not what you need! I suppose you need a better way to store your password. For this you should store passwords, in a separate file that the application reads when it starts. That is the only real way to prevent the password from leaking as a result of decompilation.

See this answer : From a similar question

link|improve this answer
feedback

you can byte endcode the string in a method and make the method return a string. if you wish you could add your encryption alogrithm that extracts the actual string using the input bytess.

link|improve this answer
as Sanjay points out below, that is a better approach. Use a encryption api to extract the username, pwd, url from a properties file that goes with your app. This way you can also implement some licensing features.. (which is a bit more complicated) – Sid Malani Nov 20 '11 at 16:54
One thing I'd like to add to this answer: avoid storing the encryption key with the encrypted data. – S.L. Barth Nov 20 '11 at 17:03
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.