검색결과 리스트
글
md5를 이용한 password hash value 구하기
POSTGRESQL
2014. 11. 26. 11:17
1. pgcrypto extension 을 생성합니다.
estdb=# create extension pgcrypto; CREATE EXTENSION testdb=# create table user_info(user_id varchar(30), password varchar(100)); CREATE TABLE testdb=# insert into user_info values('id1', crypt('id1_password', gen_salt('md5'))); INSERT 0 1 testdb=# insert into user_info values('id2', crypt('id2_password', gen_salt('md5'))); INSERT 0 1
2. 데이터를 조회할 때는 아래와 같이 SQL을 작성합니다.
testdb=# select user_id from user_info where user_id='id1' and password = crypt('id1_password', password); user_id --------- id1 (1 row) testdb=#
'POSTGRESQL' 카테고리의 다른 글
pg_trgm 을 이용한 전후위 like 검색 (0) | 2015.04.21 |
---|---|
prepare statements 와 casting (0) | 2015.04.21 |
[9.4 beta]ALTER SYSTEM 구문을 이용한 파라메터 변경 (0) | 2014.10.29 |
table inheritance(상속) (0) | 2014.10.28 |
max_connections 와 커널파라메터 (0) | 2014.10.27 |