column_encrypt
Transparent column-level encryption with encrypted_text and encrypted_bytea types
Repository
vibhorkum/column_encrypt
https://github.com/vibhorkum/column_encrypt
Source
column_encrypt-4.0.tar.gz
column_encrypt-4.0.tar.gz
Overview
| Package | Version | Category | License | Language |
|---|---|---|---|---|
column_encrypt | 4.0 | SEC | PostgreSQL | C |
| ID | Extension | Bin | Lib | Load | Create | Trust | Reloc | Schema |
|---|---|---|---|---|---|---|---|---|
| 7030 | column_encrypt | No | Yes | Yes | Yes | No | No | encrypt |
| Related | pgcrypto pg_enigma pgsodium pgcryptokey pgcrypto pg_tde pgsmcrypto sslutils |
|---|
fixed encrypt schema; create schema encrypt before CREATE EXTENSION; preload column_encrypt;
Version
| Type | Repo | Version | PG Ver | Package | Deps |
|---|---|---|---|---|---|
| EXT | PIGSTY | 4.0 | 1817161514 | column_encrypt | pgcrypto |
| RPM | PIGSTY | 4.0 | 1817161514 | column_encrypt_$v | - |
| DEB | PIGSTY | 4.0 | 1817161514 | postgresql-$v-column-encrypt | - |
Build
You can build the RPM / DEB packages for column_encrypt using pig build:
pig build pkg column_encrypt # build RPM / DEB packages
Install
You can install column_encrypt directly. First, make sure the PGDG and PIGSTY repositories are added and enabled:
pig repo add pgsql -u # Add repo and update cache
Install the extension using pig or apt/yum/dnf:
pig install column_encrypt; # Install for current active PG version
pig ext install -y column_encrypt -v 18 # PG 18
pig ext install -y column_encrypt -v 17 # PG 17
pig ext install -y column_encrypt -v 16 # PG 16
pig ext install -y column_encrypt -v 15 # PG 15
pig ext install -y column_encrypt -v 14 # PG 14
dnf install -y column_encrypt_18 # PG 18
dnf install -y column_encrypt_17 # PG 17
dnf install -y column_encrypt_16 # PG 16
dnf install -y column_encrypt_15 # PG 15
dnf install -y column_encrypt_14 # PG 14
apt install -y postgresql-18-column-encrypt # PG 18
apt install -y postgresql-17-column-encrypt # PG 17
apt install -y postgresql-16-column-encrypt # PG 16
apt install -y postgresql-15-column-encrypt # PG 15
apt install -y postgresql-14-column-encrypt # PG 14
Preload:
shared_preload_libraries = 'column_encrypt';
Create Extension:
CREATE EXTENSION column_encrypt CASCADE; -- requires: pgcrypto
Feedback
Was this page helpful?
Thanks for the feedback! Please let us know how we can improve.
Sorry to hear that. Please let us know how we can improve.