Re: Transparent encryption in PostgreSQL?

From: "Greg Patnude" <gpatnude(at)hotmail(dot)com>
To: pgsql-general(at)postgresql(dot)org
Subject: Re: Transparent encryption in PostgreSQL?
Date: 2005-07-15 15:26:14
Message-ID: db8k5c$25ld$1@news.hub.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

The point of a data base is storing ASCII or unicode not encypting the data... encrypting the data IN the database is a bad idea.... what happens if you ever lose the key ??? you lose ALL your data... Additionally -- encryption keys are usually machine-dependent so you lose the ability to migrate to new hardware and possibly the ability to upgrade the RDBMS engine itself...

It sounds to me like your issues are really about security and access control.... You'd be better off using an ACL and locking down your server...

""Matt McNeil"" <mcneil(at)callahanpro(dot)com> wrote in message news:20050713191150(dot)7D88752BDF(at)svr1(dot)postgresql(dot)org(dot)(dot)(dot)
Greetings,

I need to securely store lots of sensitive contact information and
notes in a freely available database (eg PostgreSQL or MySQL) that will be
stored on a database server which I do not have direct access to.
This database will be accessed by a PHP application that I am
developing. However, I also need to be able to search/sort these data
with the database functions (SELECT, ORDER BY, etc) so encrypting on
the client side (web application) or using encryption of specific fields
would not work. (For example, I need to encrypt
contacts' names, but need to be able to search for results by name). (I
realize I could load the entire table into memory with PHP and
process/search/sort it there, but
that's obviously not a very good solution). Ideally I would like to
encrypt entire tables. I read something about the pgcrypto contrib
module, but have't been able to discern if it can do ecryption in a
transparent way (e.g. so that I can do regex searches on the data).

My sense is that this is a difficult problem. However, I made the
mistake of promising this functionality,
so I'm scrambling to figure out some kind of solution. Any
suggestions?

Thanks so much!

Matt

In response to

Browse pgsql-general by date

  From Date Subject
Next Message Andrus 2005-07-15 15:26:43 Re: How to create unique constraint on NULL columns
Previous Message Greg Patnude 2005-07-15 15:15:27 Re: How to obtain the list of data table name only