mirror of
https://git.postgresql.org/git/postgresql.git
synced 2024-12-15 08:20:16 +08:00
3f11971916
at end of files.
18 lines
367 B
SQL
18 lines
367 B
SQL
--
|
|
-- crypt() and gen_salt(): md5
|
|
--
|
|
|
|
SELECT crypt('', '$1$Szzz0yzz');
|
|
|
|
SELECT crypt('foox', '$1$Szzz0yzz');
|
|
|
|
CREATE TABLE ctest (data text, res text, salt text);
|
|
INSERT INTO ctest VALUES ('password', '', '');
|
|
|
|
UPDATE ctest SET salt = gen_salt('md5');
|
|
UPDATE ctest SET res = crypt(data, salt);
|
|
SELECT res = crypt(data, res) AS "worked"
|
|
FROM ctest;
|
|
|
|
DROP TABLE ctest;
|