mirror of https://github.com/postgres/postgres
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
193 B
18 lines
193 B
|
25 years ago
|
--
|
||
|
|
-- init pgcrypto
|
||
|
|
--
|
||
|
|
\set ECHO none
|
||
|
|
-- check for encoding fn's
|
||
|
|
select encode('foo', 'hex');
|
||
|
|
encode
|
||
|
|
--------
|
||
|
|
666f6f
|
||
|
|
(1 row)
|
||
|
|
|
||
|
|
select decode('666f6f', 'hex');
|
||
|
|
decode
|
||
|
|
--------
|
||
|
|
foo
|
||
|
|
(1 row)
|
||
|
|
|