aboutsummaryrefslogtreecommitdiff
path: root/contrib/pgcrypto/expected/init.out
blob: 509f454047474c92878227cc5e26d6a2751712c3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
--
-- 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)