Your achievements

Level 1

0% to

Level 2

Tip /
Sign in

Sign in to Community

to gain points, level up, and earn exciting badges like the new
Bedrock Mission!

Learn more

View all

Sign in to view all badges

The 4th edition of the Campaign Community Lens newsletter is out now!

Custom Function for Encryption

Avatar

Level 4

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="(&lt;String&gt;)" 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:

1716845_pastedImage_1.png

Am I doing any mistake.

or is there any other way of implementation.

Regards.

2 Replies

Avatar

Level 3

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;

1718374_pastedImage_2.png

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.

Avatar

Level 4

Hi Parvesh,

Thanks for your help.

However this extension pgcrypto is already installed.

Regards

The ultimate experience is back.

Join us in Vegas to build skills, learn from the world's top brands, and be inspired.

Register Now