Click here to Skip to main content
Click here to Skip to main content

Encrypting the app.config File for Windows Forms Applications

By , 17 Apr 2007
 

Introduction

ASP.NET offers the possibility to encrypt sections in the web.config automatically. It seems it is not possible for WinForm applications to do that for the app.config. And this is true for a part: WinForms does not offer tools to configure it. But it can be done. It is all .NET. Isn't it? So how do we do it? Read on and see how.

Using the Code

First let me explain something about the configuration files in .NET. The app.config and web.config are divided into sections. The encrypting and decrypting operations are performed on sections and not on the file as a whole.

Developers can extend a configuration file by defining custom sections. This can be done by adding a section tag to the configSections element or the sectionGroup element like in the example below. The name attribute of section element specifies the name of the new section. The type attribute specifies the handler that processes the configuration section: it gets the data out of the section. As you can see in the example below, I implemented both scenarios.

<?xml version="1.0" encoding="utf-8" ?>
<configuration> 
    <configSections>
        <section name="Vault" 
                 type="System.Configuration.NameValueSectionHandler" />
        <sectionGroup name="applicationSettings" 
                    type="System.Configuration.ApplicationSettingsGroup, System, 
                    Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" >
            <section name="EncryptConnStringsSection.My.MySettings" 
                    type="System.Configuration.ClientSettingsSection, System, 
                    Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" 
                    requirePermission="false" />
        </sectionGroup>
    </configSections>
    <connectionStrings>
        <add name="EncryptConnStringsSection.My.MySettings.testConn"
            connectionString="Data Source=someserver;Initial 
                             Catalog=ProjectX_Dev;Integrated Security=True" />
    </connectionStrings>

Now that I have explained how to create sections in the app.config, let's go on to show how to encrypt a section. It is really a simple operation. And once a section has been encrypted, you do not have to worry about decrypting it. The .NET Framework does it automatically for you. It is a transparent operation and works as if you did not encrypt the section.

The configuration namespace contains a class that represents a section. This class is called ConfigurationSection. A member of this class is the ElementInformation property. This property gets information about a section and it has the method ProtectSection defined on it. This method encrypts the section. Out of the box, there are two encryption algorithms supported via providers:

  • DPAPIProtectedConfigurationProvider
  • RSAProtectedConfigurationProvider

The default provider is RSAProtectedConfigurationProvider. You use the default provider by passing nothing/null as a parameter to the ProtectSection method.
I wrote the following class to demonstrate this method:

Imports System.Configuration

''' <summary>
''' This class protects (encrypts) a section in the applications configuration file.
''' </summary>
''' <remarks>The <seealso cref="RsaProtectedConfigurationProvider"/> 
''' is used in this implementation.</remarks>
Public Class ConfigSectionProtector

    Private m_Section As String

    ''' <summary>
    ''' Constructor.
    ''' </summary>
    ''' <param name="section">The section name.</param>
    Public Sub New(ByVal section As String)
        If String.IsNullOrEmpty(section) Then _ 
            Throw New ArgumentNullException("ConfigurationSection")

        m_Section = section
    End Sub

    ''' <summary>
    ''' This method protects a section in the applications configuration file. 
    ''' </summary>
    ''' <remarks>
    ''' The <seealso cref="RsaProtectedConfigurationProvider" /> 
    ''' is used in this implementation.
    ''' </remarks>
    Public Sub ProtectSection()
        ' Get the current configuration file.
        Dim config As Configuration = ConfigurationManager.OpenExeConfiguration
                        (ConfigurationUserLevel.None)
        Dim protectedSection As ConfigurationSection = config.GetSection(m_Section)

        ' Encrypts when possible
        If ((protectedSection IsNot Nothing) _
        AndAlso (Not protectedSection.IsReadOnly) _
        AndAlso (Not protectedSection.SectionInformation.IsProtected) _
        AndAlso (Not protectedSection.SectionInformation.IsLocked) _
        AndAlso (protectedSection.SectionInformation.IsDeclared)) Then
            ' Protect (encrypt)the section.
            protectedSection.SectionInformation.ProtectSection(Nothing)
            ' Save the encrypted section.
            protectedSection.SectionInformation.ForceSave = True
            config.Save(ConfigurationSaveMode.Full)
        End If
    End Sub
End Class 

As you can see, this class also has a method ProtectSection. Basically it gets section information out of the app.config and checks if it can be encrypted. If so, it protects the section using the default encryption provider and it saves it. And it's done.

It is simpler to protect or unprotect connectionstrings. It can be done with the following code sample:

' Connection string encryption
Dim config As Configuration = ConfigurationManager.OpenExeConfiguration
                    (ConfigurationUserLevel.None)      
config.ConnectionStrings.SectionInformation.ProtectSection(Nothing)
' We must save the changes to the configuration file.
config.Save(ConfigurationSaveMode.Full, True)  

History

  • 30-03-2007: Initial version
  • 12-04-2007: Added a link to my blog. Maybe you will like it. Let me know, please.
  • 18-04-2007: Updated the example project
  • 21-04-2007: Updated last code example

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

About the Author

TRON
Web Developer
Netherlands Netherlands
Member
Name : A.C.F. de Ron B ICT (Ton)
Position : Senior System designer
Date of birth : 15-12-1971
Nationality : Dutch
Language : Dutch, English
Experience since : 1996
Blog : http://www.tronsoft.nl
Summary :
 
After my study Business Administration Informatics at the University for Economic Studies, In gained experience as a Database Designer, Software Developer, Software Engineer, Tester and .NET coach. With Centura Team Developer I built several applications for social care foundations and for the life insurance branch, e.i. Winterthur and Zwisterleven.
 
Also I worked for Philip Morris Holland where I maintained and developed on the specification system for cigarettes. Also I worked there on .Net projects which aided production logistics. At this moment I work for Unilever Research where I designed and implemented a formulation creation tool and a monitor stock administration application using .Net 2.0 and Visual Studio.Net 2005.

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
Hint: For improved responsiveness ensure Javascript is enabled and choose 'Normal' from the Layout dropdown and hit 'Update'.
You must Sign In to use this message board.
Search this forum  
    Spacing  Noise  Layout  Per page   
GeneralMy vote of 1memberB.Farivar23 Apr '13 - 19:45 
QuestionWay to encrypt the config filememberMember 333565330 Sep '11 - 8:34 
QuestionNot working inside IDEmemberPravesh Koirala 10811 Aug '11 - 1:32 
AnswerRe: Not working inside IDEmemberTRON11 Aug '11 - 21:58 
GeneralRe: Not working inside IDEmemberPravesh Koirala 10812 Aug '11 - 16:29 
Generalerror : "Extension names must be unique"memberdonet0123 Aug '10 - 6:56 
GeneralRe: error : "Extension names must be unique" [modified]membervikrantislav8 Dec '10 - 9:12 
GeneralRe: error : "Extension names must be unique"membervikrantislav9 Dec '10 - 8:59 
Question.pfx filememberraland16 Oct '08 - 22:33 
AnswerRe: .pfx filememberTRON20 Oct '08 - 10:07 
GeneralMS Example on how encrypt winforms app.configmemberpeterpan2561 Sep '08 - 4:17 
QuestionDeploy problemmemberluc_favaro20 Aug '08 - 9:15 
AnswerRe: Deploy problemmemberTRON21 Aug '08 - 11:25 
GeneralProblem with this implementation...memberDaveBlack8 Oct '07 - 11:29 
GeneralRe: Problem with this implementation...memberTRON9 Oct '07 - 6:18 
GeneralRe: Problem with this implementation...memberkevinlkingma18 Jul '08 - 3:42 
GeneralRe: Problem with this implementation...memberEd Gadziemski30 Jul '08 - 12:01 
QuestionHow do I encrypt this config file?memberHenkVanTol4 May '07 - 4:46 
AnswerRe: How do I encrypt this config file?memberTRON10 May '07 - 22:22 
Generalquick way to encrypt sections in app.configmembermpayne7921 Apr '07 - 10:55 
GeneralRe: quick way to encrypt sections in app.configmemberbmwgamil27 Jul '07 - 8:02 
GeneralRe: quick way to encrypt sections in app.configmembermpayne7927 Jul '07 - 13:52 
GeneralRe: quick way to encrypt sections in app.configmemberfrobertrti9 Feb '09 - 12:43 
GeneralRe: quick way to encrypt sections in app.configmemberMember 436144517 Sep '09 - 2:18 
GeneralRe: quick way to encrypt sections in app.configmembersjelen9 Feb '10 - 1:16 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Permalink | Advertise | Privacy | Mobile
Web04 | 2.6.130516.1 | Last Updated 18 Apr 2007
Article Copyright 2007 by TRON
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid