My desktop application asks a user for proxy-server credentials to use it later. But what is the best way to store this secure information for further usage?
My desktop application asks a user for proxy-server credentials to use it later. But
Share
In Windows you can use CryptProtectData function to encrypt your data using account password, then store the encrypted data in registry or in config file. This way you won’t need to ask for any password at all.