Soldato
Hopefully there is a simple solution to this sort of issue:
If I have a windows application written in VB.net which needs to log onto other services, an SQL database, or the web based API of another system, how would one typically detail with storing the log on details. Hard coding thme is obviously bad practice, any sort of storing in an external config file would be a security risk unless it could somehow be encrypted?
At the moment there is only a need to log into the external service, the username is stored in a config file, and the password is requested from the user each session when they first conenct to the external service. But its soon going to be necessary to have an SQL database associated with the program and that causes problems with what to do with the log in details for that
If I have a windows application written in VB.net which needs to log onto other services, an SQL database, or the web based API of another system, how would one typically detail with storing the log on details. Hard coding thme is obviously bad practice, any sort of storing in an external config file would be a security risk unless it could somehow be encrypted?
At the moment there is only a need to log into the external service, the username is stored in a config file, and the password is requested from the user each session when they first conenct to the external service. But its soon going to be necessary to have an SQL database associated with the program and that causes problems with what to do with the log in details for that