1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-30 11:03:19 +03:00

Add missing pgcrypto files.

This commit is contained in:
Bruce Momjian
2001-10-01 16:12:23 +00:00
parent 998cebc4db
commit 43cadb9231
22 changed files with 837 additions and 0 deletions

View File

@ -0,0 +1,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)