2001-10-02 00:12:23 +08:00
|
|
|
--
|
|
|
|
-- crypt() and gen_salt(): crypt-des
|
|
|
|
--
|
|
|
|
|
2002-10-19 02:41:22 +08:00
|
|
|
SET autocommit TO 'on';
|
2001-10-02 00:12:23 +08:00
|
|
|
|
2002-10-19 02:41:22 +08:00
|
|
|
SELECT crypt('', 'NB');
|
2001-10-02 00:12:23 +08:00
|
|
|
|
2002-10-19 02:41:22 +08:00
|
|
|
SELECT crypt('foox', 'NB');
|
2001-10-02 00:12:23 +08:00
|
|
|
|
2002-10-19 02:41:22 +08:00
|
|
|
CREATE TABLE ctest (data text, res text, salt text);
|
|
|
|
INSERT INTO ctest VALUES ('password', '', '');
|
2001-10-02 00:12:23 +08:00
|
|
|
|
2002-10-19 02:41:22 +08:00
|
|
|
UPDATE ctest SET salt = gen_salt('des');
|
|
|
|
UPDATE ctest SET res = crypt(data, salt);
|
|
|
|
SELECT res = crypt(data, res) AS "worked"
|
|
|
|
FROM ctest;
|
|
|
|
|
|
|
|
DROP TABLE ctest;
|
2001-10-02 00:12:23 +08:00
|
|
|
|