Re: How to convert BYTEA (from decrypt) to TEXT?

Поиск
Список
Период
Сортировка
От Vincenzo Romano
Тема Re: How to convert BYTEA (from decrypt) to TEXT?
Дата
Msg-id CAHjZ2x4f1h5yBv66UzanP6Kp7SJXBd+wyqDveBQj2na5s8qbhg@mail.gmail.com
обсуждение исходный текст
Ответ на How to convert BYTEA (from decrypt) to TEXT?  (Vincenzo Romano <vincenzo.romano@notorand.it>)
Список pgsql-general
2012/4/23 Vincenzo Romano <vincenzo.romano@notorand.it>:
> Hi all.
> I know that the output of a decrypt() call (from pgcrypto module) can
> be safely converted to TEXT.
> CAST( decrypt( data,key,'bf' ) as TEXT ) (and other variants) just doesn't work.
> How can I (possibly easily) do it?
> Thanks.

Found!
It is on chapter 9.4

select
  *
  from convert_from( decrypt(
'\x864b9b7e89f7beda7030b3918811299f3489315f7818f594a16fb17461a12db5','fooz','aes'
),'UTF8' );

(sorry for bothering).

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

Предыдущее
От: "Tomas Vondra"
Дата:
Сообщение: Re: What is the different between pg_trgm search and FULL Text search?
Следующее
От: Andrew Dunstan
Дата:
Сообщение: Re: [HACKERS] Namespace of array of user defined types is confused by the parser in insert?