Big Data. Big Decisions
InformationWeek
Special Coverage Series

Commentary


Adventures in Encryption



I recently needed to enable encryption in an Apex/Oracle application to protect data at rest using Oracle transparent data encryption. This encryption works at the database level only and protects data in database files and redo logs. Accessing without being an authorized user of the database leaves selected data encrypted while authorized access transparently encrypts/decrypts the data. It is slick stuff that is general except when the data encrypted is in a FK relationship as well as function-based indexes.

The challenge I am dealing with is how much to encrypt. For the applications I am developing, personally identifiable information (PII) such as name, age, gender, and SSN are the targets to protect. TDE overhead is generally 3-5% CPU so it doesn't come for free. I am working with Oracle 11g which supports tablespace TDE but have many customers who have 10g rel 2 which supports column-level only. If I could get everyone on to 11g, but until then, I need to work this out.

For an existing table created earlier such as shown below

create table demographics

( demographics_pk number

, first_name varchar2(80)

, last_name varchar2(80)

, dob  date 

, ssn varchar2(9)

);

The TDE can be applied using the following:

alter table demographics modify (last_name encrypt using 'AES256' NO SALT);

alter table demographics modify (dob encrypt using 'AES256');

The first example encrypts demographics.last_name using the strong AES algorithm 256 bit encryption. The NO SALT option does not apply seeding and is required when that column will be indexed.

The second example would apply SALT automatically - slightly more secure but only useful when the column is not indexed.

Of course, none of this works if an encryption wallet to store the master and lesser keys is not set up on the Oracle instance beforehand. My experience with encryption wallets is to make sure you can back up and restore the wallet. I made the mistake on my laptop instance of not properly protecting the wallet when first learning about TDE and found out the hard way that the data becomes permanently encrypted. A bummer whose only cure is to drop the schema containing the permanently encrypted data and rebuild the schema. This is definitely not what you want to do with production systems, so I always build in some training on projects that include TDE so that the customer DBAs can handle it. Makes me sleep better at night as well.

Now, to the issue that started this blog. The PII that needs to be protected is a sensitive identifier like the SSN and additional information like name. An identity thief can use the two together to create credit. Ideally, I would like to encrypt all of it - names, dob, ssn, gender. this blocks theft from backup tapes and file system hacks and narrows identity theft to theft by authorized users. Not a pleasant issue to be sure but often easier to resolve.

In practice, I have function-based indexes on name so I can't encrypt those columns. I encrypted dob, gender, SSN, and alterative keys that could be cross-referenced with the name and other data over time by a clever hacker. I think that is sufficient since our names alone are generally considered public. I also encrypted name, dob, ssn and other data in all other tables containing PII. In my application, I have aliases of person data and audit tables. All of these were encrypted as well. Basically any table that has PII is a candidate for encryption.

The only wildcard is impact on performance. I am expecting the performance hit to not be 3-5% for multiple columns. I am not sure what will be acceptable but feel that a hit of up to 10% aggregate degradation may be acceptable.

A change of subject - Oracle technology is of minor interest to the DDJ, I believe. Encryption would generally be implemented from a client app, and over the years, there has been a lot of discussion to that effect. The DDJ community should be aware that there are different approaches to this problem and that shared-data applications should be based on a database. My favorite is Oracle for enterprise data-centric apps, especially if security is an issue - and nowaways security always is. Sorry, I will stop ranting, but think about it the next time you have an app that meets the above criteria.

++B 



Related Reading


More Insights




Currently we allow the following HTML tags in comments:

Single tags

These tags can be used alone and don't need an ending tag.

<br> Defines a single line break

<hr> Defines a horizontal line

Matching tags

These require an ending tag - e.g. <i>italic text</i>

<a> Defines an anchor

<b> Defines bold text

<big> Defines big text

<blockquote> Defines a long quotation

<caption> Defines a table caption

<cite> Defines a citation

<code> Defines computer code text

<em> Defines emphasized text

<fieldset> Defines a border around elements in a form

<h1> This is heading 1

<h2> This is heading 2

<h3> This is heading 3

<h4> This is heading 4

<h5> This is heading 5

<h6> This is heading 6

<i> Defines italic text

<p> Defines a paragraph

<pre> Defines preformatted text

<q> Defines a short quotation

<samp> Defines sample computer code text

<small> Defines small text

<span> Defines a section in a document

<s> Defines strikethrough text

<strike> Defines strikethrough text

<strong> Defines strong text

<sub> Defines subscripted text

<sup> Defines superscripted text

<u> Defines underlined text

BYTE encourages readers to engage in spirited, healthy debate, including taking us to task. However, BYTE moderates all comments posted to our site, and reserves the right to modify or remove any content that it determines to be derogatory, offensive, inflammatory, vulgar, irrelevant/off-topic, racist or obvious marketing/SPAM. BYTE further reserves the right to disable the profile of any commenter participating in said activities.

Disqus Tips To upload an avatar photo, first complete your Disqus profile. | View the list of supported HTML tags you can use to style comments. | Please read our commenting policy.

Follow InformationWeek

By The Numbers

What Are Your Primary Concerns About Using Big Data Software?

Base: 417 respondents at organizations using or planning to deploy data analytics, BI or statistical analysis software
Data: InformationWeek 2013 Analytics, Business Intelligence and Information Management Survey of 541 business technology professionals, October 2012

What Do You Think?

What's your attitude about SQL analysis on top of Hadoop?
We want fast, standard SQL analysis capabilities on Hadoop ASAP
Hadoop is for unstructured data; SQL is for relational databases
We'll give SQL on Hadoop a try, but relational DBs will remain the mainstay
Given strong SQL support on Hadoop, we'd nix the data warehouse
We're not interested in Hadoop
No opinion



Related Content

From Our Sponsor

Five Big Data Challenges and How to Overcome Them with Visual Analytics

Five Big Data Challenges and How to Overcome Them with Visual Analytics

Business leaders often need a visual snapshot of data to quickly grasp and use it. This paper identifies five challenges in presenting data and how visual analytics can resolve them. Solutions are suggested to overcome the challenges of: speed, data clarity, data quality, displaying meaningful results, and dealing with outliers.

Game-Changing Analytics: How IT Executives Can Use Analytics to Create Innovation and Business Success

Game-Changing Analytics: How IT Executives Can Use Analytics to Create Innovation and Business Success

Today's competitive advantage requires a deeper understanding of your business, your market and your customers. As an IT executive, you can drive that knowledge transformation. In this white paper, learn how to make decisions as a strategic business leader and three steps to begin an analytics initiative within your enterprise.

Data Visualization Techniques: From Basics to Big Data with SAS Visual Analytics

Data Visualization Techniques: From Basics to Big Data with SAS Visual Analytics

High-performance data visualization turns sophisticated analyses into meaningful graphics, leading to faster and smarter decision making. In this white paper, learn how visual analytics can transform big data, with additional features such as real-time functionality, mobile compatibility, robust applications for technical groups and accessibility for nontechnical users.

Big Data: Lessons from the Leaders

Big Data: Lessons from the Leaders

Financial performance, competitive advantage, operational efficiency, strategic decision making - every business goal can extract value from big data, and the time for doubt or inaction has long passed. In this Economist Intelligence Unit report, in-depth interviews with data pioneers reveal the link between the effective use of big data and the bottom line among other results.

Decision-Driven Data Management: A Strategy for Better Decisions with Better Data

Decision-Driven Data Management: A Strategy for Better Decisions with Better Data

Which came first, the data or the decision? This white paper makes the case for having a decision in mind, then tailoring big data's volume, variety and velocity to achieve business results such as overcoming customer dissatisfaction or creating well-informed strategies in real time.

Informationweek Reports

Research: The Big Data Management Challenge

Research: The Big Data Management Challenge

The challenge of big data is real, but most organizations don't differentiate 'big data' from traditional data, and nearly 90% of respondents to our survey use conventional databases as the primary means of handling data. We'll help you understand what constitutes big data (it's not just size) and the numerous management challenges it poses.