summaryrefslogtreecommitdiffstats
path: root/contrib/pgcrypto/expected/crypt-blowfish.out
blob: d79b0c047b4c77a0312acbb517c869959a6e67a7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
--
-- crypt() and gen_salt(): bcrypt
--
SELECT crypt('', '$2a$06$RQiOJ.3ELirrXwxIZY8q0O');
                            crypt                             
--------------------------------------------------------------
 $2a$06$RQiOJ.3ELirrXwxIZY8q0OlGbBEpDmx7IRZlNYvGJ1SHXwNi2cEKK
(1 row)

SELECT crypt('foox', '$2a$06$RQiOJ.3ELirrXwxIZY8q0O');
                            crypt                             
--------------------------------------------------------------
 $2a$06$RQiOJ.3ELirrXwxIZY8q0OR3CVJrAfda1z26CCHPnB6mmVZD8p0/C
(1 row)

-- error, salt too short:
SELECT crypt('foox', '$2a$');
ERROR:  invalid salt
-- error, first digit of count in salt invalid
SELECT crypt('foox', '$2a$40$RQiOJ.3ELirrXwxIZY8q0O');
ERROR:  invalid salt
-- error, count in salt too small
SELECT crypt('foox', '$2a$00$RQiOJ.3ELirrXwxIZY8q0O');
ERROR:  invalid salt
CREATE TABLE ctest (data text, res text, salt text);
INSERT INTO ctest VALUES ('password', '', '');
UPDATE ctest SET salt = gen_salt('bf', 8);
UPDATE ctest SET res = crypt(data, salt);
SELECT res = crypt(data, res) AS "worked"
FROM ctest;
 worked 
--------
 t
(1 row)

DROP TABLE ctest;