2001-10-02 00:12:23 +08:00
|
|
|
--
|
|
|
|
-- init pgcrypto
|
|
|
|
--
|
2007-11-13 14:29:04 +08:00
|
|
|
--
|
|
|
|
-- first, define the functions. Turn off echoing so that expected file
|
|
|
|
-- does not depend on contents of pgcrypto.sql.
|
|
|
|
--
|
|
|
|
SET client_min_messages = warning;
|
2001-10-02 00:12:23 +08:00
|
|
|
\set ECHO none
|
2007-11-13 14:29:04 +08:00
|
|
|
RESET client_min_messages;
|
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
|