System Information
- Strapi Version: 4.11.4
- Operating System: Ubuntu 22.04
- Database: MySQL 8
- Node Version: 18
- NPM Version:
- Yarn Version:
Recently I am request to add encryption to fields containing PII.
It seems to be required by some kinds of law.
The PII has to be encrypted when saving into database, and decrypted when fetched.
I have tried using “private” attribute and this plugin:
“Private” attribute simply hide the fields in API request, which does no encryption.
The plugin mentioned does encrypt the data, but does not decrypt the data on Admin UI.
Is there any other plugin I can use?
Or could I modify how data is retrieved on Admin UI so I can continue making use of the pulgin metioned?
Thanks.