Results 1 to 2 of 2

Thread: pgcrypto performance

  1. #1
    Join Date
    Dec 2020
    Posts
    1

    pgcrypto performance

    I am postgres noob and only self-taught from reading stuff on-line.
    I am needing to do some data encryption. using C# & pgcrypto and column encryption but performance is really horrible. Sample:
    insert int SomeTable(value1, value2, value3) values (PGP_SYM_ENCRYPT(@value1, pw), (PGP_SYM_ENCRYPT(@value2, pw), (PGP_SYM_ENCRYPT(@value3, pw)) returning someTableId
    and command.Parameters.AddWithValue to add the individual values.

    the real table has 14 columns and an unencrypted of 1000 records insert takes ~1500ms and with this encryption takes 17-18 + seconds. I assume I'm doing something fundamentally wrong but don't know what it is.

    any help would be greatly appreciated.

  2. #2
    Join Date
    Sep 2021
    Posts
    1
    Hello,
    Did you find away for making this faster?

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •