2001-10-02 00:12:23 +08:00
|
|
|
--
|
|
|
|
-- init pgcrypto
|
|
|
|
--
|
2011-02-14 09:06:41 +08:00
|
|
|
CREATE EXTENSION pgcrypto;
|
2009-08-05 02:49:50 +08:00
|
|
|
-- ensure consistent test output regardless of the default bytea format
|
|
|
|
SET bytea_output TO escape;
|
2001-10-02 00:12:23 +08:00
|
|
|
-- check for encoding fn's
|
2002-10-19 02:41:22 +08:00
|
|
|
SELECT encode('foo', 'hex');
|
2001-10-02 00:12:23 +08:00
|
|
|
encode
|
|
|
|
--------
|
|
|
|
666f6f
|
|
|
|
(1 row)
|
|
|
|
|
2002-10-19 02:41:22 +08:00
|
|
|
SELECT decode('666f6f', 'hex');
|
2001-10-02 00:12:23 +08:00
|
|
|
decode
|
|
|
|
--------
|
|
|
|
foo
|
|
|
|
(1 row)
|
|
|
|
|
2005-03-21 13:24:52 +08:00
|
|
|
-- check error handling
|
|
|
|
select gen_salt('foo');
|
|
|
|
ERROR: gen_salt: Unknown salt algorithm
|
|
|
|
select digest('foo', 'foo');
|
|
|
|
ERROR: Cannot use "foo": No such hash algorithm
|
|
|
|
select hmac('foo', 'foo', 'foo');
|
|
|
|
ERROR: Cannot use "foo": No such hash algorithm
|
|
|
|
select encrypt('foo', 'foo', 'foo');
|
|
|
|
ERROR: Cannot use "foo": No such cipher algorithm
|