Can I encrypt a single value or encrypt entire partitions?
those. Given that app.config is below, how can I encrypt only the password. I read articles about encrypting connection string sections and entire app.config sections.
<?xml version="1.0"?>
<configuration>
<appSettings>
<add key="Interval" value="40000" />
<add key="User" value="User1" />
<add key="Password" value="boombox" /> ...
If you have any suggestions, they will be very grateful
source
share