


Hey Geeks,
I made a custom function which encrypts the data using encrypt Postgresql Function.
The code goes like:
<funcList name="myList" namespace="cus">
<group name="string" label="String">
<function name="EncryptString" type="string" args="(<String>)" help="Encrypts given String with AES using hugyourclient"
minArgs="1" maxArgs="1" display="Encrypts given String with AES using hugyourclient">
<providerPart provider="PostgreSQL" body="ENCRYPT(($1),'hugyourclient','aes')"/>
</function>
</group>
</funcList>
However this gives me following error:
Am I doing any mistake.
or is there any other way of implementation.
Regards.
Hello,
BY default encryption is not installed on postgres.
1. First run the follwoing command to see the list of avialble encrytion:
postgres=> show rds.extensions;
2. Add the pgcrypto on your postgres data base:
postgres=> create extension pgcrypto;
3. Again print list:
postgres=> show rds.extensions;
You should get pgcrypto and try again.
You should have access of your database to run following query. If not you can share this with your datbase team.
You can alos check this url: postgresql 9.3 - Can't run digest() on PosrgreSQL 9.3 on RDS - Database Administrators Stack Exchang...
Thanks.
Parvesh.
Hi Parvesh,
Thanks for your help.
However this extension pgcrypto is already installed.
Regards
Views
Replies
Total Likes