Is there a way to obfuscate part of an XML attribute?
I want to encrypt the user= and password= part of the following xml attribute so no one looking at the file can see the password. Is there any way to do that using Java DOM?
<connectionString="Data Source=Winserver\sqlexpress;Initial Catalog=haven;Integrated Security=false;user=admin;password="/>
If you can answer with Java code, that would be great.
Thank you!