Packages/@pgpm/encrypted-secrets-table

@pgpm/encrypted-secrets-table

Table-based encrypted secrets storage and retrieval

v0.10.0
encryptionsecrets

Install Package

pgpm install @pgpm/encrypted-secrets-table

Documentation

@pgpm/encrypted-secrets-table

Table-based encrypted secrets storage and retrieval.

Overview

@pgpm/encrypted-secrets-table provides the foundational storage layer for encrypted secrets management in PostgreSQL. This package creates the secrets_schema.secrets_table table that stores encrypted sensitive data such as API keys, passwords, tokens, and other credentials in a structured, secure format.

Features

  • Structured Storage: Dedicated table for encrypted secrets with proper indexing
  • UUID-Based Ownership: Links secrets to owning entities via UUID foreign keys
  • Dual Encryption Support: Supports both bytea (binary) and text-encoded encrypted values
  • Unique Constraints: Prevents duplicate secrets per owner
  • Automatic Hashing: Trigger-based hashing for secret verification
  • Foundation Layer: Provides storage for higher-level secrets management APIs

Installation

If you have pgpm installed:

pgpm install @pgpm/encrypted-secrets-table
pgpm deploy

This is a quick way to get started. The sections below provide more detailed installation options.

Prerequisites

# Install pgpm CLI 
npm install -g pgpm

# Start local Postgres (via Docker) and export env vars
pgpm docker start
eval "$(pgpm env)"

Tip: Already running Postgres? Skip the Docker step and just export your PG* environment variables.

Add to an Existing Package

# 1. Install the package
pgpm install @pgpm/encrypted-secrets-table

# 2. Deploy locally
pgpm deploy 

Add to a New Project

# 1. Create a workspace
pgpm init workspace

# 2. Create your first module
cd my-workspace
pgpm init

# 3. Install a package
cd packages/my-module
pgpm install @pgpm/encrypted-secrets-table

# 4. Deploy everything
pgpm deploy --createdb --database mydb1

Database Schema

secrets_schema.secrets_table

The core table for storing encrypted secrets:

CREATE TABLE secrets_schema.secrets_table (
  id uuid PRIMARY KEY DEFAULT uuid_generate_v4(),
  secrets_owned_field uuid NOT NULL,           -- Owner entity ID
  name text NOT NULL,                          -- Secret name/identifier
  secrets_value_field bytea NULL,              -- Binary encrypted value
  secrets_enc_field text NULL,                 -- Text-encoded encrypted value
  UNIQUE(secrets_owned_field, name)            -- One secret per name per owner
);

Columns:

  • id: Unique identifier for the secret record
  • secrets_owned_field: UUID of the entity that owns this secret (e.g., user ID, organization ID)
  • name: Human-readable name for the secret (e.g., "github_token", "stripe_api_key")
  • secrets_value_field: Binary encrypted value (bytea format)
  • secrets_enc_field: Text-encoded encrypted value (for PGP armor format)

Constraints:

  • Primary key on id
  • Unique constraint on (secrets_owned_field, name) ensures each owner can have only one secret with a given name

Triggers

hash_secrets

Automatically hashes secrets for verification purposes:

CREATE TRIGGER hash_secrets
  BEFORE INSERT OR UPDATE ON secrets_schema.secrets_table
  FOR EACH ROW
  EXECUTE FUNCTION secrets_schema.hash_secrets_trigger();

This trigger ensures secrets are properly hashed before storage, enabling verification without exposing the raw values.

Usage

Storing a Secret

-- Insert an encrypted secret
INSERT INTO secrets_schema.secrets_table (
  secrets_owned_field,
  name,
  secrets_value_field
) VALUES (
  'user-uuid-here',
  'api_key',
  pgp_sym_encrypt('my-secret-value', 'encryption-password')
);

Retrieving a Secret

-- Get encrypted secret
SELECT 
  id,
  name,
  pgp_sym_decrypt(secrets_value_field, 'encryption-password') AS decrypted_value
FROM secrets_schema.secrets_table
WHERE secrets_owned_field = 'user-uuid-here'
  AND name = 'api_key';

Updating a Secret

-- Update existing secret
UPDATE secrets_schema.secrets_table
SET secrets_value_field = pgp_sym_encrypt('new-secret-value', 'encryption-password')
WHERE secrets_owned_field = 'user-uuid-here'
  AND name = 'api_key';

Deleting a Secret

-- Remove a secret
DELETE FROM secrets_schema.secrets_table
WHERE secrets_owned_field = 'user-uuid-here'
  AND name = 'api_key';

Common Patterns

Multi-Tenant Secrets

-- Each organization has its own secrets
INSERT INTO secrets_schema.secrets_table (
  secrets_owned_field,
  name,
  secrets_value_field
) VALUES
  ('org-1-uuid', 'aws_access_key', pgp_sym_encrypt('...', 'password')),
  ('org-1-uuid', 'aws_secret_key', pgp_sym_encrypt('...', 'password')),
  ('org-2-uuid', 'aws_access_key', pgp_sym_encrypt('...', 'password'));

User-Specific Secrets

-- Each user has their own API tokens
INSERT INTO secrets_schema.secrets_table (
  secrets_owned_field,
  name,
  secrets_value_field
) VALUES
  ('user-1-uuid', 'github_token', pgp_sym_encrypt('...', 'password')),
  ('user-2-uuid', 'github_token', pgp_sym_encrypt('...', 'password'));

Listing All Secrets for an Owner

-- Get all secret names for an owner (without values)
SELECT id, name
FROM secrets_schema.secrets_table
WHERE secrets_owned_field = 'user-uuid-here'
ORDER BY name;

Integration with Other Packages

With @pgpm/encrypted-secrets

The @pgpm/encrypted-secrets package builds on this storage layer to provide:

  • High-level API functions for secret management
  • Role-based access control
  • Encryption/decryption helpers
  • Secret verification functions
-- @pgpm/encrypted-secrets provides functions like:
SELECT encrypted_secrets.secrets_getter('owner-uuid', 'secret-name');
SELECT encrypted_secrets.secrets_upsert('owner-uuid', 'secret-name', 'value');

With Application Tables

Link secrets to your application entities:

-- Users table with secrets
CREATE TABLE users (
  id uuid PRIMARY KEY,
  email text,
  -- Secrets stored in secrets_schema.secrets_table
  -- with secrets_owned_field = users.id
);

-- Get user's secrets
SELECT s.*
FROM users u
JOIN secrets_schema.secrets_table s ON s.secrets_owned_field = u.id
WHERE u.email = 'user@example.com';

Security Considerations

  1. Encryption Required: Never store plaintext secrets in this table
  2. Access Control: Use PostgreSQL RLS policies to restrict access
  3. Encryption Keys: Store encryption passwords securely (not in database)
  4. Audit Logging: Consider logging access to secrets table
  5. Key Rotation: Plan for periodic re-encryption with new keys

Row-Level Security Example

-- Enable RLS
ALTER TABLE secrets_schema.secrets_table ENABLE ROW LEVEL SECURITY;

-- Users can only access their own secrets
CREATE POLICY user_secrets ON secrets_schema.secrets_table
  FOR ALL
  TO authenticated
  USING (secrets_owned_field = jwt_public.current_user_id());

-- Administrators can access all secrets
CREATE POLICY admin_secrets ON secrets_schema.secrets_table
  FOR ALL
  TO administrator
  USING (true);

Best Practices

  1. Use Unique Names: Choose descriptive, unique names for each secret
  2. Consistent Ownership: Use the same UUID scheme for secrets_owned_field across your application
  3. Binary vs Text: Use secrets_value_field (bytea) for better performance, secrets_enc_field (text) for PGP armor format
  4. Don't Log Secrets: Ensure database logs don't capture decrypted values
  5. Regular Cleanup: Remove secrets when owners are deleted

Dependencies

  • @pgpm/verify: Verification utilities

Testing

pnpm test

Related Tooling

  • pgpm: 🖥️ PostgreSQL Package Manager for modular Postgres development. Works with database workspaces, scaffolding, migrations, seeding, and installing database packages.
  • pgsql-test: 📊 Isolated testing environments with per-test transaction rollbacks—ideal for integration tests, complex migrations, and RLS simulation.
  • supabase-test: 🧪 Supabase-native test harness preconfigured for the local Supabase stack—per-test rollbacks, JWT/role context helpers, and CI/GitHub Actions ready.
  • graphile-test: 🔐 Authentication mocking for Graphile-focused test helpers and emulating row-level security contexts.
  • pgsql-parser: 🔄 SQL conversion engine that interprets and converts PostgreSQL syntax.
  • libpg-query-node: 🌉 Node.js bindings for libpg_query, converting SQL into parse trees.
  • pg-proto-parser: 📦 Protobuf parser for parsing PostgreSQL Protocol Buffers definitions to generate TypeScript interfaces, utility functions, and JSON mappings for enums.

Disclaimer

AS DESCRIBED IN THE LICENSES, THE SOFTWARE IS PROVIDED "AS IS", AT YOUR OWN RISK, AND WITHOUT WARRANTIES OF ANY KIND.

No developer or entity involved in creating this software will be liable for any claims or damages whatsoever associated with your use, inability to use, or your interaction with other users of the code, including any direct, indirect, incidental, special, exemplary, punitive or consequential damages, or loss of profits, cryptocurrencies, tokens, or anything else of value.

Install pgpm CLI

npm install -g pgpm
# Start local Postgres (via Docker)
pgpm docker start
eval "$(pgpm env)"

Workspace Setup

# 1. Create a workspace
pgpm init workspace
cd my-app

# 2. Create your first module
pgpm init
cd packages/your-module

# 3. Install a package
pgpm install @pgpm/encrypted-secrets-table

# 4. Deploy everything
pgpm deploy --createdb --database mydb1