summaryrefslogtreecommitdiffstats
path: root/contrib/pgcrypto/sql/init.sql
blob: 5c3d100576b723b766302e62c46b6f8d73537ae9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
--
-- init pgcrypto
--

CREATE EXTENSION pgcrypto;

-- ensure consistent test output regardless of the default bytea format
SET bytea_output TO escape;

-- check for encoding fn's
SELECT encode('foo', 'hex');
SELECT decode('666f6f', 'hex');

-- check error handling
select gen_salt('foo');
select digest('foo', 'foo');
select hmac('foo', 'foo', 'foo');
select encrypt('foo', 'foo', 'foo');