ProtectedConfigurationProvider
using System.Configuration.Provider;
using System.Xml;
namespace System.Configuration
{
public abstract class ProtectedConfigurationProvider : ProviderBase
{
public abstract XmlNode Encrypt(XmlNode node);
public abstract XmlNode Decrypt(XmlNode encryptedNode);
}
}