Saturday, August 11, 2012

Awesome RavenDB feature of the Day, Encryption

Awesome RavenDB feature of the Day, Encryption:
Another upcoming feature for the next RavenDB release is full encryption support. We got several requests for this feature from customers that are interested in using RavenDB to store highly critical data. Think financial records, health information, etc.
For those sort of applications, there are often regulatory concerns about the data at rest. I’ll state upfront that I think that a lot of those regulations make absolutely no sense from a practical standpoint, but…
The end result is that we can never put any plaintext data on disk. Which result in some interesting problems for our use case. To start with, it is fairly easy to go about creating encryption for documents. They are independent from one another and are usually read / written in a single chunk. In fact, there have been several articles published on exactly how to do that. The problem is with indexes, which are not read as a whole, in fact, we have to support random reads through it.
In the currently released version, you could encrypt documents using a custom bundle, but you can’t get real encryption across the board. This like in flight documents, partial map/reduce data and the indexes themselves will not be encrypted and be saved in plain text format, even with a custom bundle.
In the next version of RavenDB (this feature will be available for the Enterprise version), we have made sure that all of that just works. Everything is encrypted, and there is no plain text data on disk for any reason. RavenDB will transparently encrypt/decrypt the data for you when it is actually sent to disk.
By default, we use AES-128 (you can change that, if you want, but there is a not insignificant hit if you want to just to AES-256 and it is just as secure, barring a quantum computer) to encrypt the data.
The funny part (or not so funny part) is that the actual process of encrypting the data was a relatively straightforward process. We had to spend a lot more time & effort on the actual management aspect of this feature.
For example, encryption requires an encryption key, so how do you manage that?
In RavenDB, we have two types of configurations. Server wide, which is usually located at the App.config file and database specific, which is located at the System database. For the App.config file, we provide support for encrypting the file using DPAPI, using the standard .NET config file encryption system. For database specific values, we provide our own support for encrypting the values using DPAPI.
So, the end result is:


  • Your documents and indexes are encrypted when they are on disk using strong encryption.


  • You can use a server wide or database specific key for the encryption (for that matter, you turn on/off encryption at the database level).


  • Your encryption key is guarded using DPAPI.


  • Obviously, you should backup the encryption key, because we have no way of recovering your data without it. 


  • The data is safely encrypted on disk, and the OS guarantee that no one can access the encryption key.


And, finally: You get to tick off the “no plaintext data at rest” checkbox and move on to do actual feature development Smile.


DIGITAL JUICE

No comments:

Post a Comment

Thank's!