piimask

command module
v0.0.0-...-63be3af Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Jun 13, 2024 License: Apache-2.0 Imports: 6 Imported by: 0

README

piimask go

This is a tiny tool to mask Personally Identifiable Information (PII) in database.

Status: Proof of Concept

Example

docker-compose up -d
DATABASE_URL=postgresql://app:example@localhost/app go run .
UPDATE users SET
first_name = 'REDACTED' /* character varying */,
last_name = 'REDACTED' /* character varying */,
email = 'REDACTED' /* character varying */,
phone = 'REDACTED' /* character varying */
;
UPDATE messages SET
sender_id = 'REDACTED' /* character varying */,
recipient_id = 'REDACTED' /* character varying */,
title = 'REDACTED' /* text */,
body = 'REDACTED' /* text */
;

Documentation

The Go Gopher

There is no documentation for this package.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL