postgresql/contrib/pgcrypto/sql/init.sql

13 lines
159 B
MySQL
Raw Normal View History

2001-10-01 18:12:23 +02:00
--
-- init pgcrypto
--
\set ECHO none
\i pgcrypto.sql
\set ECHO all
-- check for encoding fn's
SELECT encode('foo', 'hex');
SELECT decode('666f6f', 'hex');
2001-10-01 18:12:23 +02:00