4
votes
3answers
64 views

Encrypt a custom section in app/web.config file

I need to encrypt/decrypt custom sections in app.config as well as web.config file. I read that aspnet_regiis can be used for web.config, but i need to do this programatically. After opening the ...
1
vote
0answers
99 views

Programmatically securing configuration sections

I've been trying to write a tool to use RsaProtectedConfigurationProvider to secure the connectionStrings settings of my application. While there are many tutorials on managing this using ...
0
votes
0answers
88 views

.NET custom config file encryption permission issue

I am trying to encrypt a custom config file in my .net mvc web application. Let's call the config file myConfig.config. I cannot use aspnet_regiis because it is not web.config and I do not want to use ...
2
votes
2answers
335 views

Encrypt the password string in web.config

How can I encrypt the password string in web.config? <system.net> <mailSettings> <smtp deliveryMethod="Network"> <network host="smtp.gmail.com" ...
3
votes
1answer
216 views

Prevent IIS app restart when saving an encrypted configuration section?

I'm helping build an ASP.NET C# application with multiple custom configuration files. We store these outside the web.config file using <configSections><section /></configSections> ...
0
votes
1answer
188 views

Encrypt Web.Config value in packaged ASP.NET solution

We are selling a web application to a client, and it includes some 3rd party components. These components require licensing keys to work, which we have stored in the web.config. As we are not selling ...
0
votes
1answer
824 views

aspnet_regiis -pe cannot find my configuration section in .net v4.0.30319

I've added a new Settings.settings file to my ASP.NET Webclient project; I am having a problem encrypting the section. In the cmd window positioned to this directory: ...
1
vote
1answer
1k views

how to encrypt vpnc Xauth password in /etc/vpn/example.cfg file?

when i set up vpnc, i created a /etc/vpnc/example.cfg file so that i don't have to enter everything every time. one of the lines is "Xauth password " where i have to enter it in plain text. is there ...
1
vote
2answers
856 views

Encrypting files added to Mercurial repositories on commit

Having read this past question for git, I would like to ask if there exists something like that, but can be done programmatically (file list) on each machine; works for Mercurial. The reason for ...
1
vote
2answers
247 views

Loading and storing encryption keys from a config source

I am writing an application which has an authenticity mechanism, using HMAC-sha1, plus a CBC-blowfish pass over the data for good measure. This requires 2 keys and one ivec. I have looked at ...
2
votes
4answers
1k views

Is there a way to encrypt the configuration file of a Windows Forms application?

Is there a way to encrypt the configuration file of a Windows forms application? All I can find on google is stuff that is dependant on "aspnet_regiis.exe" but I want to do this for a desktop ...
10
votes
2answers
58k views

Java - encrypt / decrypt user name and password from a configuration file

We are busy developing a Java web service for a client. There are two possible choices: Store the encrypted user name / password on the web service client. Read from a config. file on the client ...
14
votes
6answers
5k views

Programmatically encrypting a config-file in .NET

Could somebody please do a rundown of how to programmatically encrypt a config-file in .NET, preferably in C#. What I would like to do is do some kind of check on an application's startup to see if a ...