Re: Storing encrypted data?

Поиск
Список
Период
Сортировка
От Aaron Bono
Тема Re: Storing encrypted data?
Дата
Msg-id bf05e51c0607170855i632fdd2fob1455fdc8ef4c9d4@mail.gmail.com
обсуждение исходный текст
Ответ на Re: Storing encrypted data?  (John Tregea <john@debraneys.com>)
Ответы Re: Storing encrypted data?
Список pgsql-sql
On 7/17/06, John Tregea <john@debraneys.com> wrote:
Hi Michael,

Thanks for your advice. I was looking at the bytea data type in the
PostgreSQL book I bought (Korry and Susan Douglas, second edition). I
was concerned that if I have to escape certain characters like the
single quote or the backslash, how do I guarantee that the escaped
version does not already appear in the encrypted string?

Should I use the octal value to escape the single quote (\047) and
backslash (\\134)?

Those character sequences are extremely unlikely to occur in an
encrypted string.

Is the the right approach ?

Also... I note that I cannot change the data type of my field from text
to bytea (I am using PGADMIN III). Do you know why?

 
When I have data like this, I do a Base64 encoding.  The string ends up longer but I no longer have to worry about special characters mucking things up.

==================================================================
   Aaron Bono
   Aranya Software Technologies, Inc.
   http://www.aranya.com
==================================================================

В списке pgsql-sql по дате отправления:

Предыдущее
От: Michael Fuhr
Дата:
Сообщение: Re: Storing encrypted data?
Следующее
От: "Penchalaiah P."
Дата:
Сообщение: hi let me know the solution to this question