What is the process of two-way encryption of data in PostgreSQL database version 9.1 using built-in functions?
Derek Downey
23.6k11 gold badges79 silver badges104 bronze badges
-
2Did you have a look at pgcrypto? postgresql.org/docs/current/static/pgcrypto.htmluser1822– user18222012年07月12日 10:22:20 +00:00Commented Jul 12, 2012 at 10:22
1 Answer 1
PostgreSQL's built-in two-way encryption functions are documented here. The functions that come in the encrypt/decrypt pairs are the two-way encryption options.
answered Jul 12, 2012 at 12:59
lang-sql