pgsodium icon indicating copy to clipboard operation
pgsodium copied to clipboard

Modern cryptography for PostgreSQL using libsodium.

Results 37 pgsodium issues
Sort by recently updated
recently updated
newest added

Hi! Was reading some stuff about Supabase Vault and wondered how to use HashiCorp Vault for the key, so decided to take a crack at something basic, inspired by the...

Hello, It's not clear to me how to decrypt a column using a view that was encrypted with a security label. Is there any documentation around this? Thanks!

Currently every time we use: ```sql SECURITY LABEL FOR pgsodium ON COLUMN ... ``` it generates/replaces a decrypted view. This view does not have `security_invoker = on` by default. We...

Here is the complete error ![image](https://user-images.githubusercontent.com/3684236/220042249-ecc90054-0d4b-4a9c-accb-1fa2bdd3e326.png)

Are the plans to add homomorphic encryption to this extension, so it's possible to sum up data without decrypting data first?

Which version supports on debian 10 I see libsodium and libsodium-dev supports only 1.0.17-1

I have this code ``` token_value := jsonb_build_object( 'token', token, 'workspace_name', workspace_name, 'user', user_email ); INSERT INTO services_connected (workspace_id, service_name, data) VALUES (workspace_id_value, 'google', token_value) ON CONFLICT (workspace_id, service_name) DO...

Hi when i call `select pgsodium.derive_key(1);` getting an error ERROR: pgsodium_derive_helper: pgsodium_derive: no server secret key defined. I have added shared_preload_libraries = 'pgsodium' and pgsodium.server_secret_key = '696fe962615267e8d65adad896ad12d996921fbbaf3fe8e56573bec1c941ca90' in postgresql.conf file...

Hi, could someone add a help section explaining how backup and restore of data is supposed to work. Imagine a situation that we want to transfer a database from one...