Improvements to Crypteron configuration settings in .config files

As part of our continual improvements based on reviews and customer feedback, we’ve made some simplifications to Crypteron’s configuration settings typically specified inside your C# application’s app.config or web.config file.

NOTE: As per the release notes, these changes will be part of the upcoming 2015.07 release. So if you’re still on the old Crypteron Agents ignore this until you upgrade.

These differences are shown below with the specific changes in red and green across the old and new syntax respectively.

Old syntax

<?xml version="1.0" encoding="utf-8"?>
<configuration>
  <configSections>
    <!-- Declaration only, no customization -->
    <section name="crypteronCipherCore" type="Crypteron.CipherCore.ConfigFile.CrypteronCipherCoreSection, CipherCore, Version=2015, Culture=neutral, PublicKeyToken=e0287981ec67bb47" requirePermission="false" />
  </configSections>

  <!-- Read below for valid values and customization -->
  <crypteronCipherCore>
  ...
  <cipherDbConfig securePrefix="Secure_" allowNullsInSecureFields="false" bindRow="true" migrationPolicy="MigrateOnWrite" migrationLimit="5" /> 
  ...
  </crypteronCipherCore>
</configuration>

New syntax

<?xml version="1.0" encoding="utf-8"?>
<configuration>
  <configSections>
    <!-- Declaration only, no customization -->
    <section name="crypteronConfig" type="Crypteron.CrypteronConfig, CipherCore, Version=2015, Culture=neutral, PublicKeyToken=e0287981ec67bb47" requirePermission="false" />
  </configSections>

  <!-- Read below for valid values and customization -->
  <crypteronConfig>
  ...
  <commonConfig securePrefix="Secure_" allowNullsInSecureFields="false" />
  <cipherDbConfig bindRow="true" migrationPolicy="MigrateOnWrite" migrationLimit="5" />
  ...
  </crypteronConfig> 
</configuration>

Leave a Reply

Your email address will not be published. Required fields are marked *

You may use these HTML tags and attributes:

<a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <s> <strike> <strong>

Recent blog posts

Migrating existing live data into Crypteron

You’re already live in production. And you have sensitive in the clear. Read this article to see how Crypteron can help.

Encryption, Entity Framework and Projections

Projections in Entity Framework live outside the entity lifecycle. Read more to learn how your can use Crypteron to secure such data.

PCI DSS and key rotations simplified

PCI compliance requires data encryption keys to be changed frequently. Here is how you can do it easily.

Your data-center is not secure and what you can do about it

There is no secure perimeter anymore. Neither in your corporate network nor in your data center. Fight a winning battle armed with self-protecting data rather than a losing one trying to protecting the infrastructure.

Introducing the Crypteron Startup Innovators Program

Qualifying startups get up to 50% off all plans. Tell us how you’re changing the world and the our Startup Innovators Program will support your journey.

6 encryption mistakes that lead to data breaches

If encryption is so unbreakable, why do businesses and governments keep getting hacked? Six common encryption mistakes that lead to data breaches.

Announcing the new Crypteron Community Edition

Starting today you can now sign up for the Crypteron Community Edition for free with no performance limitations.

Data breach response – One click to save your business

Get breathing room – when you need it the most. Respond to a data breach with a single click.

Why We Need Proper Data-At-Rest Encryption: 191M U.S. Voters’ Data Exposed

Adding security at the application level is a large step forward in protecting data from the constant threat of data breaches

How to encrypt large files

CipherStor is blazingly fast! Here we show how to use it within your data-flow pipeline to maintain high performance when encrypting large files.

Improvements to Crypteron configuration settings in .config files

by Sid Shetye time to read: 1 min
0