postgresql/contrib/pgcrypto/sql/crypt-xdes.sql

19 lines
380 B
MySQL
Raw Normal View History

2001-10-01 18:12:23 +02:00
--
-- crypt() and gen_salt(): extended des
--
SELECT crypt('', '_J9..j2zz');
2001-10-01 18:12:23 +02:00
SELECT crypt('foox', '_J9..j2zz');
2001-10-01 18:12:23 +02:00
CREATE TABLE ctest (data text, res text, salt text);
INSERT INTO ctest VALUES ('password', '', '');
2001-10-01 18:12:23 +02:00
UPDATE ctest SET salt = gen_salt('xdes', 1001);
UPDATE ctest SET res = crypt(data, salt);
SELECT res = crypt(data, res) AS "worked"
FROM ctest;
DROP TABLE ctest;
2001-10-01 18:12:23 +02:00