I created one table in posgresql database and I want to encrypt that entire table using key ,how to do that?
1 Answer
I assume you mean all the data in a table. You can enable the pgcrypto extension.
CREATE EXTENSION IF NOT EXISTS pgcrypto;
Have a squizz at the official documentation pgcrypto, to see which functions would meet your requirements.