postgresql/contrib/pgcrypto/sql/init.sql

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

12 lines
200 B
MySQL
Raw Normal View History

2023-05-09 21:11:15 +00:00
--
-- init pgcrypto
--
CREATE EXTENSION pgcrypto;
-- check error handling
select gen_salt('foo');
select digest('foo', 'foo');
select hmac('foo', 'foo', 'foo');
select encrypt('foo', 'foo', 'foo');