|
|
|
|
|
|
|
Empress Technical News – November 2008 Database Encryption -
Safeguarding Confidential Data – Part 2 IntroductionEmpress Database with Encryption that was shown in the September 2008 Technical News is used to show what happens when using an index and a “where clause” on encrypted data. The objective is to show that Empress Database with Encryption does two things. First, it can index encrypted data and select it. Second, it can select encrypted data from a table based on a “where clause”. All this can be done without any need to modify the SQL commands that are used for non-encrypted data. In this example, the Linux system is Ubuntu Linux and the encryption algorithms are part of the “libgcrypt” library. This “libgcrypt” library is a standard part of most 2.6 Linux systems such as Red Hat Enterprise Linux, Novell Linux, Ubuntu, etc, and implements encryption algorithms such as AES (Advanced Encryption Standard) using key sizes of 128, 192 or 256 bits. Preparing the EncryptionEnvironment and Database Log onto a Linux system that has the Empress Database with encryption option installed. Type in “pwd” to find out what directory you are in. In this case it is “/home/alex”. alex@knopit:~$
pwd Use the Empress environment variable “MSCIPHERKEYINFO” to associate the new database name “testdb” with a short hexadecimal encryption key “74657374696e6731”. You can choose the most appropriate database name and encryption key. alex@knopit:~$
MSCIPHERKEYINFO="
/home/alex/testdb"
:74657374696e6731 Nowcreate the database “testdb” in “/home/alex” using the “empmkdb” command with the “cipher” option set to “AES256”. Encryption and decryption on this database will be performed using the Advanced Encryption Standard (AES) algorithm with a key size of 256 bits (32 bytes or 64 hexadecimal digits) through the “libgcrypt” library. For illustrative purposes only, we use a shorter and less secure key of 16 hex digits. alex@knopit:~$ empmkdb -cipher AES256 testdb Start the Database and Create Two Tables, Hello1 & Hello2Start up Empress Interactive SQL using the “empsql” command on the database “testdb”. The Interactive SQL prompt should appear. alex@knopit:~$
empsql testdb 1* Create two new tables called “Hello1” and “Hello2” with two fields called “Name” and “Message”. “Name” will store 10 characters and “Message” will store 15 characters. The “Message” field in “Hello2” is also specified as “encrypted”. 1*
create table Hello1 (Name character (10), Message character (15)) Store Values & Create Index on Two Tables, Hello2 Encrypted Store three values for “Name” and “Message” into the “Hello1” and “Hello2” tables using the “insert” command. Use “Alex”, “Tom” and “Sam” for “Name” and “Hello World”, “Good Day” and “Welcome” for “Message”. 3*
insert into Hello1 values (" Alex" , " Hello World" ) Create an index on “Messages” in both tables “Hello1” and “Hello2”. 9*
create unique index Hello1x on Hello1( Message ) Select ALL Data from TwoTables, Hello2 Encrypted Select all the data from the “Hello1” and “Hello2” tables. The Name “Alex”, and the Message “Hello World” followed by “Sam” and “Welcome” is printed on the terminal. The Messages in “Hello2” are the same as in “Hello1” even though “Hello2” Messages are encrypted at the file level. 11*
select * from Hello1 12*select * from Hello2 Select Using a Where Clause from Two Tables, Hello2 EncryptedSelectall the data from the “Hello1” and “Hello2” tables where the “Message” is equal to “Welcome”. The Message in “Hello2” is the same as “Hello1” even though “Hello2” is encrypted.13* select * from Hello1 where Message = 'Welcome' Name Message 14*select * from Hello2 where Message = 'Welcome' Name Message Show All Properties of Two Tables, Hello2 EncryptedShow all properties of the “Hello1” and “Hello2” tables using the “display table” command with the option “all”. Note that the “Hello1” table is shown as Table # 6 by the “display table all” command and that the “Hello2” table is shown as Table # 7. In Empress, all tables are stored as files named “nnnn.rel”, so the “Hello1” table would be a file in the database named “0006.rel” and the “Hello2” table would be a file named “0007.rel”. 15* display table Hello1 all *** Table: Hello1 *** Attributes: Name Creator:
alex Table #:
6 16* display table Hello2 all *** Table: Hello2 *** Attributes: Name Creator: alex Indices:
UNIQUE BTREE Hello2x ON (Message) Verify that the Index Data is EncryptedUse theLinux escape “!” in Empress SQL to do a directory listing on “testdb”.
|
Company |
Products |
Services |
Partners |
Media |
|
USA: 301-220-1919 Canada
& International: 905-513-8888 |