1

I created one table in posgresql database and I want to encrypt that entire table using key ,how to do that?

1 Answer 1

1

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.

Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.