I have an application that authenticates a third-party web service by sending username and password. At the moment, I am typing the password on winform every time I launch the application, but I need it to log into the system automatically.
I would like to keep the username / password somewhat more secure than
Dim username as String = "username" Dim password as String = "password"
I understand that I probably wonβt stop a particular hacker from accessing my source code, but storing them in plain text seems wrong.
I found some similar questions here, but none of them gave me an answer that I can use.
Change The web service is not mine, it is an API that requires me to log in.
Flash source share