RPK wrote: > Is there any built in function in PGSQL to Encrypt/Decrypt a text before > storing in field? If yes, which algorithms it supports and what is the > maximum key size? Take a look at contrib/pgcrypto. It supports a wide range of different algorithms and key sizes. There's a README file with details. //Magnus