WonderPhi Vault -- Encryption & Security Batch Recipes

In stock
SKU
WONDERPHI-VAULT-100
$4.75

💳 Available Payment Options

Companies can pay via the structures below. Exact amounts and terms are set per item at agreement. Use the calculator to see approximate payments for a given total and term.

Leave blank to use the product price.
Full amount due upon agreement or by agreed date. Best for simpler deals.
Amount Due:

Sign the license agreement and complete payment via wire transfer.

Equal payments monthly (or quarterly for 24+ months).
Payment Amount:
Frequency:
Total Payments:

Sign the license agreement and complete payment via wire transfer.

Upfront fee (20-30%) + % of net revenue, with minimum annual royalty. Paid quarterly.
Upfront Fee:
Remaining (via royalty):

+ % of net revenue quarterly, with minimum annual royalty. Terms set at agreement.

Sign the license agreement and complete payment via wire transfer.

% of gross or net revenue, no/minimal upfront. Good when revenue is more predictable than milestones.
Structure: % of gross or net revenue

No or minimal upfront cost. Percentage and terms set at agreement based on projected revenue.

Sign the license agreement and complete payment via wire transfer.

Payments at key events: signing, delivery, first sale, regulatory approval, etc.
Typical Milestones:
  • Signing
  • Delivery
  • First Sale
  • Regulatory Approval

Amounts allocated per milestone at agreement. Total equals the agreed price.

Sign the license agreement and complete payment via wire transfer.

Fixed fee per year, renewable. Suits ongoing use, updates, or support. Multi-year discounts possible.
Annual Fee:
Discount:
Total over term:

Sign the license agreement and complete payment via wire transfer.

Lump sum due Net 30, Net 60, or Net 90 after agreement or delivery. Single payment, later date.
Amount Due:
Due Date:

Sign the license agreement and complete payment via wire transfer.

30 batch recipes for encryption, signing, hashing, certs, secrets scanning. SHA-256 an evidence archive; GPG-encrypt a folder; scan a codebase for AWS keys. Requires WonderPhi Compute.
First to market

Publicly online since 2010 · U.S. patent applications since 2012 · inventions offered since 2014. The work of Christopher Gabriel Brown, independently documented.

First posted: · Last updated:
Links

WonderPhi Vault -- Encryption & Security Batch Recipes

30 batch recipes for encryption, signing, hashing, certs, secrets scanning. SHA-256 an evidence archive; GPG-encrypt a folder; scan a codebase for AWS keys. Requires WonderPhi Compute.

© CRI-ONE. All rights reserved. Patents issued and pending. Unauthorized reproduction of the underlying designs is prohibited.


Extended catalog & full narrative — WonderPhi Vault -- Encryption & Security Batch Recipes

The extended dossier appended from the 2026-08-05 catalog snapshot. Prices in the body copy have been stripped; the live-store price on this page is the authoritative figure. Images have been omitted.

Easy Setup — No Package Manager, No Account, No Cloud

Single Python file. Python 3.8+ standard library only — nothing to pip install. Run with:

python wpv-recipe.py

Sample plan files ship with the download and run out of the box. Pair with WonderPhi Compute to execute the generated plans in parallel.

WonderPhi Vault — 30 batch recipes for encryption & security operations

Thirty recipes for the daily cryptography-and-audit chores: GPG encrypt/decrypt at scale, AES-256 file wrapping, code signing, TLS certificate lifecycle, tamper-evident hash sidecars, PII scanning, secret-scrub audits. Point at a folder or a key ring, get a plan.

Why this exists

Every organization has a cryptography backlog: "we should sign our releases", "we should audit certs monthly", "we should scan for PII in the exports folder". None of it is complicated. All of it stays undone because doing 400 things by hand is nobody's favorite Tuesday.

These recipes wrap the tools gpg, openssl, signtool, certutil, and a handful of pure-Python audit routines into batch operations. Encrypt 500 files. Verify 2,000 signatures. Scan a whole export folder for credit-card numbers. Rotate every internal cert.

What it is, in plain English

Each recipe knows how to do one crypto or audit task — encrypt this folder, decrypt that one, verify these signatures, scan for PII, hash every file for tamper detection. You give it a target (folder, file list, key ring). It emits a plan-line per input. Compute runs them in parallel. Nothing leaves your machine.

How you use it — three steps

  1. Run the recipe file. python wpv-recipe.py in the folder that contains your input files, or wherever you want the plan written.
  2. Point at the target. The recipe asks (or reads from a text file) what the input is — a folder, a list of hostnames, a CSV, whatever the recipe expects. It writes a plan file: one shell command per line.
  3. Hand the plan to Compute. Drop the generated plan.wpc.txt into the WonderPhi Compute inbox, and every command runs in parallel across your cores. Read the honest log when it's done.

Worked examples — three of the 30 recipes in this library

gpg-encrypt-folder — encrypt every file in a folder for a recipient

One plan-line per file. All 500 files encrypt at once. Output goes to a separate folder you specify.

python wpv-recipe.py gpg-encrypt --input ./exports --output ./encrypted --recipient alice@example.com

# emitted plan:
# gpg --output ./encrypted/report001.pdf.gpg --encrypt --recipient alice@example.com ./exports/report001.pdf
# gpg --output ./encrypted/report002.pdf.gpg --encrypt --recipient alice@example.com ./exports/report002.pdf

sha256-sidecar — drop a tamper-evident hash next to every file

Emits one .sha256 sidecar per file. Verify later with sha256sum -c.

python wpv-recipe.py sha256-sidecar --input ./release-artifacts

scan-pii — audit a folder for social security numbers and credit cards

Pure Python, regex-based. One plan-line per file. Aggregated report at the end.

python wpv-recipe.py scan-pii --input ./exports --output pii-audit.tsv

Verified capabilities

Recipes work on any Windows or Linux machine with the underlying crypto tool installed:

  • 30 operations covered: GPG (encrypt, decrypt, sign, verify, key-import, key-fingerprint), AES-256 file wrapping, code signing (signtool for .exe, jarsigner for .jar, openssl-dgst for arbitrary files), TLS cert operations (generate CSR, self-sign, verify chain, extract SANs, days-until-expiry), hashing (SHA-256/512/MD5 sidecars, hash-tree, checksums.txt), audit routines (PII scan, secret-scrub for API keys / bearer tokens, sensitive-permission audit).
  • Parallel encryption of 500 files in ~4 seconds on a 16-core box.
  • Every recipe is offline. No cloud, no key-management-service integration — you use your own local gpg or openssl.

Every claim is testable on your own machine using the sample plans in the download.

Under the hood — the honest technical picture

Every crypto recipe delegates to the real thing: gpg, openssl, signtool, certutil. The recipe never rolls its own cryptography — it drives tools that have decades of scrutiny behind them. Audit recipes (PII scan, secret-scrub) are pure Python and their entire source is readable in a single sitting.

  • Never rolls its own crypto. Delegates to well-known tools. Auditable.
  • No key material handling. Recipes don't ship keys, don't manage keys, don't touch keys — they just invoke gpg or openssl which use your existing keyring.
  • Reversible by default. Encrypt recipes never delete the source; you always keep the plaintext until you're satisfied.
  • PII / secret-scrub is pattern-based. Fast, deterministic, no ML, no cloud calls. Regex definitions are inspectable and tunable.
  • Offline-first. Every recipe works on an air-gapped machine.

How it compares to the manual way

Aspect The typical alternative This product
Cost per new crypto operationWrite a shell loop and hope you quoted paths correctlyRun one recipe with two flags
Key exposurePasswords in shell historyDelegates to gpg/openssl which use your existing keyring
Auditability"I think we encrypted those exports last Tuesday..."Plan file is a timestamped artifact you can archive
PII scanningBuy a SaaS scanner + upload your sensitive data to itLocal regex scan, results never leave your box

What you need

  • Windows / macOS / Linux workstation.
  • The crypto tools each recipe wraps: gpg (GnuPG), openssl, and (on Windows) signtool. All standard-issue.
  • Python 3.8+ to generate the plan. Standard library only.
  • WonderPhi Compute to run the plan in parallel.

What's in the download

  • wpv-recipe.py — the recipe generator (Python 3.8+, standard library only)
  • README.md — per-recipe reference for humans
  • INDEX.md — alphabetical list of every recipe with a one-line description
  • samples/ — ready-to-run demo input files for every recipe
  • LICENSE.txt — perpetual single-user license, personalized with your name and order number at delivery

Common questions

Q. Does it upload my files anywhere?

No. Every recipe is offline. The PII scanner runs entirely in Python locally. The GPG / OpenSSL calls happen on your machine. Nothing goes over the network.

Q. Does it manage my GPG keys?

No. It uses your existing GPG keyring (~/.gnupg/ or %APPDATA%\gnupg). If you already have a key, you're set. If not, run gpg --gen-key once and then use these recipes.

Q. Can I use it for cloud KMS (AWS KMS, Azure Key Vault, GCP KMS)?

Not directly — these recipes are for offline / on-prem crypto. Cloud KMS is a very different model (network round-trips per operation) and doesn't benefit from local parallelism the same way. Different product.

Q. What patterns does the PII scanner look for?

Social security numbers (US), credit-card numbers (Luhn-validated to reduce false positives), phone numbers (E.164), email addresses, and API-key shapes for the big cloud providers. Patterns live in the recipe file — you can inspect and add your own.

Glossary — every term used above, in plain English

Recipe
One of the ready-made plan-file templates in this library. Each recipe knows how to do one job across many inputs.
Plan file (*.wpc.txt)
A plain text file with one shell command per line that WonderPhi Compute reads and executes across every CPU core in parallel.
WonderPhi Compute
The parallel runtime this recipe library is designed for. Sold separately, or bundled in the Complete Bundle.
Shell command
Any line you'd normally type into a terminal / Command Prompt / PowerShell prompt.
Standard library only
The recipe uses only what ships with Python 3.8+ — no pip install, no external packages.
Perpetual license
Buy once, use forever. No renewals, no expiration, no update check.
GPG / GnuPG
GNU Privacy Guard — the standard open-source implementation of the OpenPGP standard for file encryption and signing.
AES-256
Advanced Encryption Standard, 256-bit key length. The current gold standard for symmetric file encryption.
Sidecar file
A small companion file next to a data file, holding metadata (like a SHA-256 hash) without touching the original.
PII
Personally Identifiable Information — anything that can identify a person (SSN, credit card, email, phone number).
Code signing
Cryptographically signing an executable so operating systems can verify who published it.
Keyring
Where your PGP keys live. Managed by gpg.

License & support

Retail single-user license, perpetual, non-transferable. Every download's LICENSE.txt is personalized at checkout with your name, email, and order number. Full terms live inside your download — short version: install on any machine you personally own and operate, don't redistribute, don't run it as a paid service for third parties (that needs the Industrial variant), and everything else is fine.

Support: email chris@cri-one.com. Because WonderPhi Vault — 30 batch recipes for encryption & security operations never changes, there's nothing to "support" in the update sense — but if something isn't behaving the way you expect, write and I'll help.

USA-only sales for retail.

United States sales only · USD only · Phone +1 770-776-7023, email & postal mail · Email: crioneaka@outlook.com · 1341 Wellington Cove, Lawrenceville, GA 30043-5255, USA