본문 바로가기
데이터베이스

[PostgreSQL] PostgreSQL 암호화, 복호화

by 블루데이제이 2025. 2. 13.
728x90
반응형

 

PostgreSQL의 암호화, 복호화

 

 

PostgreSQL의 암호화, 복호화를 하기위해 extensions의 pgcrypto를 먼저 설치합니다.

 

단방향 암호화

 

SELECT encode(digest('1234567890', 'sha256'), 'hex') 암호화;

양방향 암호화
SELECT encode(encrypt(convert_to('1234567890', 'utf8'), 'KEY','aes'), 'hex') 암호화

양방향 복호화
SELECT convert_from(decrypt(DECODE('42e7ef87950d06526a68a9642a0cf320', 'hex'), 'KEY', 'aes'), 'utf8') 복호화

 

 

728x90
반응형