postgresql
Postgres 암호화 기능
수색…
소개
Postgres에서는 pgcrypto 모듈을 사용하여 암호화 기능을 잠금 해제 할 수 있습니다. 확장 생성 pgcrypto;
요람
DIGEST()
함수는 주어진 데이터의 2 진 해시를 생성합니다. 이것은 임의의 해시를 만드는 데 사용할 수 있습니다.
사용법 : digest(data text, type text) returns bytea
또는 : digest(data bytea, type text) returns bytea
예 :
SELECT DIGEST('1', 'sha1')
SELECT DIGEST(CONCAT(CAST(current_timestamp AS TEXT), RANDOM()::TEXT), 'sha1')
Modified text is an extract of the original Stack Overflow Documentation
아래 라이선스 CC BY-SA 3.0
와 제휴하지 않음 Stack Overflow