anon
pg_anon : PostgreSQL Anonymizer (anon) extension
Overview
| ID | Extension | Package | Version | Category | License | Language |
|---|---|---|---|---|---|---|
| 7070 | anon
|
pg_anon
|
3.1.3 |
SEC
|
PostgreSQL
|
Rust
|
| Attribute | Has Binary | Has Library | Need Load | Has DDL | Relocatable | Trusted |
|---|---|---|---|---|---|---|
--sLd--
|
No
|
Yes
|
Yes
|
Yes
|
no
|
no
|
| Relationships | |
|---|---|
| Schemas | anon |
| See Also | faker
pgsodium
pgcrypto
pgaudit
set_user
pg_tde
|
Packages
| Type | Repo | Version | PG Major Compatibility | Package Pattern | Dependencies |
|---|---|---|---|---|---|
| EXT | PIGSTY
|
3.1.3 |
18
17
16
15
14
|
pg_anon |
- |
| RPM | PIGSTY
|
3.1.3 |
18
17
16
15
14
|
pg_anon_$v |
- |
| DEB | PIGSTY
|
3.1.3 |
18
17
16
15
14
|
postgresql-$v-pg-anon |
- |
| Linux / PG | PG18 | PG17 | PG16 | PG15 | PG14 |
|---|---|---|---|---|---|
el8.x86_64
|
PIGSTY 3.1.3
|
PIGSTY 3.1.3
|
PIGSTY 3.1.3
|
PIGSTY 3.1.3
|
PIGSTY 3.1.3
|
el8.aarch64
|
PIGSTY 3.1.3
|
PIGSTY 3.1.3
|
PIGSTY 3.1.3
|
PIGSTY 3.1.3
|
PIGSTY 3.1.3
|
el9.x86_64
|
PIGSTY 3.1.3
|
PIGSTY 3.1.3
|
PIGSTY 3.1.3
|
PIGSTY 3.1.3
|
PIGSTY 3.1.3
|
el9.aarch64
|
PIGSTY 3.1.3
|
PIGSTY 3.1.3
|
PIGSTY 3.1.3
|
PIGSTY 3.1.3
|
PIGSTY 3.1.3
|
el10.x86_64
|
PIGSTY 3.1.3
|
PIGSTY 3.1.3
|
PIGSTY 3.1.3
|
PIGSTY 3.1.3
|
PIGSTY 3.1.3
|
el10.aarch64
|
PIGSTY 3.1.3
|
PIGSTY 3.1.3
|
PIGSTY 3.1.3
|
PIGSTY 3.1.3
|
PIGSTY 3.1.3
|
d12.x86_64
|
PIGSTY 3.1.3
|
PIGSTY 3.1.3
|
PIGSTY 3.1.3
|
PIGSTY 3.1.3
|
PIGSTY 3.1.3
|
d12.aarch64
|
PIGSTY 3.1.3
|
PIGSTY 3.1.3
|
PIGSTY 3.1.3
|
PIGSTY 3.1.3
|
PIGSTY 3.1.3
|
d13.x86_64
|
PIGSTY 3.1.3
|
PIGSTY 3.1.3
|
PIGSTY 3.1.3
|
PIGSTY 3.1.3
|
PIGSTY 3.1.3
|
d13.aarch64
|
PIGSTY 3.1.3
|
PIGSTY 3.1.3
|
PIGSTY 3.1.3
|
PIGSTY 3.1.3
|
PIGSTY 3.1.3
|
u22.x86_64
|
PIGSTY 3.1.3
|
PIGSTY 3.1.3
|
PIGSTY 3.1.3
|
PIGSTY 3.1.3
|
PIGSTY 3.1.3
|
u22.aarch64
|
PIGSTY 3.1.3
|
PIGSTY 3.1.3
|
PIGSTY 3.1.3
|
PIGSTY 3.1.3
|
PIGSTY 3.1.3
|
u24.x86_64
|
PIGSTY 3.1.3
|
PIGSTY 3.1.3
|
PIGSTY 3.1.3
|
PIGSTY 3.1.3
|
PIGSTY 3.1.3
|
u24.aarch64
|
PIGSTY 3.1.3
|
PIGSTY 3.1.3
|
PIGSTY 3.1.3
|
PIGSTY 3.1.3
|
PIGSTY 3.1.3
|
u26.x86_64
|
PIGSTY 3.1.3
|
PIGSTY 3.1.3
|
PIGSTY 3.1.3
|
PIGSTY 3.1.3
|
PIGSTY 3.1.3
|
u26.aarch64
|
PIGSTY 3.1.3
|
PIGSTY 3.1.3
|
PIGSTY 3.1.3
|
PIGSTY 3.1.3
|
PIGSTY 3.1.3
|
Source
pig build pkg pg_anon; # build rpm/debInstall
Make sure PGDG and PIGSTY repo available:
pig repo add pgsql -u # add both repo and update cacheInstall this extension with pig:
pig install pg_anon; # install via package name, for the active PG version
pig install anon; # install by extension name, for the current active PG version
pig install anon -v 18; # install for PG 18
pig install anon -v 17; # install for PG 17
pig install anon -v 16; # install for PG 16
pig install anon -v 15; # install for PG 15
pig install anon -v 14; # install for PG 14Config this extension to shared_preload_libraries:
shared_preload_libraries = 'anon';Create this extension with:
CREATE EXTENSION anon;Usage
Sources:
anon is PostgreSQL Anonymizer. It applies declarative masking rules for protected query access, produces anonymized data sets, and provides pseudonymization and randomized-response helpers. Use it when realistic data must remain useful without exposing the original sensitive values; treat masking policy, role grants, and access to the unmasked database as part of the security boundary.
Core Workflow
Load anon for sessions in the target database, install the extension, and enable transparent dynamic masking. New connections pick up database-level settings.
ALTER DATABASE app SET session_preload_libraries = 'anon';
\connect app
CREATE EXTENSION anon;
ALTER DATABASE app SET anon.transparent_dynamic_masking = true;Mark a login as masked and attach masking rules to sensitive columns:
CREATE ROLE reporting LOGIN;
SECURITY LABEL FOR anon ON ROLE reporting IS 'MASKED';
GRANT pg_read_all_data TO reporting;
SECURITY LABEL FOR anon ON COLUMN customer.last_name
IS 'MASKED WITH FUNCTION anon.dummy_last_name()';
SECURITY LABEL FOR anon ON COLUMN customer.phone
IS 'MASKED WITH FUNCTION anon.partial(phone, 2, $$******$$, 2)';Queries made as reporting see the transformed values. Privileged users still see the originals, so do not grant masked roles a path around the policy.
Masking Strategies
- Dynamic masking transforms results for roles labeled
MASKEDwithout rewriting the table. - Static masking permanently rewrites selected data and is appropriate for disposable development or test copies.
- Anonymous dumps and replicas produce sanitized exports or downstream copies.
- Masking views and data wrappers expose a deliberately reduced or transformed projection.
- Pseudonymization uses deterministic transforms when joins or repeated values must remain consistent.
Important Objects
anon.dummy_*,anon.random_*, andanon.partial(...)generate or partially conceal values.anon.hash(text)andanon.digest(text, text, text)provide deterministic transformations. In 3.1.2 they were markedRESTRICTEDto limit brute-force exposure.anon.ldp_grrm(value, epsilon, max_v)andanon.ldp_grrm_pttt(value, truth_probability, max_v)implement generalized randomized response for local differential privacy.anon.ldp_truth_probability(...)andanon.ldp_lie_probability(...)help inspect randomized-response probabilities.- Security labels on roles and columns define who is masked and how each value is transformed.
Operational Notes
anon is superuser-installed and non-relocatable. Test every policy with the same grants and connection path used by the intended consumer. Randomization is not automatically deterministic; use a confirmed pseudonymization function when stable equality is required. Static anonymization is destructive, so run it on a copy and verify constraints and application behavior afterward.
Version 3.1.3 reruns missing ARM builds and changes release metadata, with no new SQL workflow. The material delta since 3.1.1 is the 3.1.2 security hardening for anon.hash and anon.digest; deployments using those functions should upgrade rather than relying on the old labels.