2001-10-02 00:12:23 +08:00
|
|
|
--
|
|
|
|
-- crypt() and gen_salt(): extended des
|
|
|
|
--
|
2002-10-19 02:41:22 +08:00
|
|
|
SELECT crypt('', '_J9..j2zz');
|
2001-10-02 00:12:23 +08:00
|
|
|
crypt
|
|
|
|
----------------------
|
|
|
|
_J9..j2zzR/nIRDK3pPc
|
|
|
|
(1 row)
|
|
|
|
|
2002-10-19 02:41:22 +08:00
|
|
|
SELECT crypt('foox', '_J9..j2zz');
|
2001-10-02 00:12:23 +08:00
|
|
|
crypt
|
|
|
|
----------------------
|
|
|
|
_J9..j2zzAYKMvO2BYRY
|
|
|
|
(1 row)
|
|
|
|
|
2002-10-19 02:41:22 +08:00
|
|
|
CREATE TABLE ctest (data text, res text, salt text);
|
|
|
|
INSERT INTO ctest VALUES ('password', '', '');
|
|
|
|
UPDATE ctest SET salt = gen_salt('xdes', 1001);
|
|
|
|
UPDATE ctest SET res = crypt(data, salt);
|
|
|
|
SELECT res = crypt(data, res) AS "worked"
|
|
|
|
FROM ctest;
|
2001-10-02 00:12:23 +08:00
|
|
|
worked
|
|
|
|
--------
|
|
|
|
t
|
|
|
|
(1 row)
|
|
|
|
|
2002-10-19 02:41:22 +08:00
|
|
|
DROP TABLE ctest;
|