AGEX Secure Share Note

Generate a plain-language share note for an AGEX bundle so recipients know how to decrypt and verify it safely

This tool turns a raw AGEX bundle into user-facing guidance. It is especially helpful when the recipient is not deeply technical and needs a simple explanation of how to decrypt the file, handle the passphrase, and verify provenance.

Example Results

1 examples

Generate a share note for a non-technical recipient

Create a clear instruction page that can travel with the encrypted bundle and explain decryption and verification steps

AGEX share instructions
View input parameters
{ "bundleFile": "/public/processing/example.agex.json", "recipientNote": "The passphrase will arrive by phone." }

Click to upload file or drag and drop file here

Maximum file size: 100MB Supported formats: application/json, */*

Key Facts

Category
Security & Validation
Input Types
file, textarea
Output Type
html
Sample Coverage
4
API Ready
Yes

Overview

The AGEX Secure Share Note generator converts raw AGEX bundles into clear, user-friendly HTML instructions. This tool helps you guide recipients—especially non-technical ones—on how to safely decrypt files, handle passphrases, and verify cryptographic signatures.

When to Use

  • When sending encrypted AGEX bundles to clients who need step-by-step decryption instructions.
  • When you need to include a specific verification public key for signature validation in the recipient's guide.
  • When sharing sensitive files and wanting to document where the decryption passphrase will be delivered separately.

How It Works

  • Upload your encrypted AGEX bundle file.
  • Optionally input a verification public key and a custom recipient note.
  • Generate the plain-language HTML share note containing clear decryption and verification steps.

Use Cases

Creating client-facing decryption guides for secure financial or legal document deliveries.
Standardizing internal IT procedures for verifying signed AGEX packages.
Attaching clear passphrase delivery instructions to encrypted data shipments.

Examples

1. Client Document Delivery Guide

Security Operations Analyst
Background
An analyst needs to send an encrypted AGEX bundle containing sensitive client audits to an external partner.
Problem
The partner does not know how to handle AGEX files or verify the sender's signature.
How to Use
Upload the audit.agex.json bundle, paste the company's public verification key, and add a note explaining that the passphrase will be sent via SMS.
Example Config
Recipient Note: "The passphrase will arrive via SMS."
Verification Public Key: "age1y..."
Outcome
An HTML instruction page is generated, showing the partner how to verify the signature and decrypt the audit file.

2. Cross-Department Secure File Share

HR Manager
Background
The HR department is sharing encrypted payroll data with the accounting team using an AGEX bundle.
Problem
The accounting team needs clear instructions on where to find the decryption key and how to process the file.
How to Use
Upload the payroll AGEX bundle and add a recipient note specifying that the key is stored in the shared password manager.
Example Config
Recipient Note: "The decryption key is available in the shared team vault under Payroll-2026."
Outcome
A custom HTML instruction sheet is created, guiding the accounting team through the decryption steps using the vault key.

Try with Samples

json, file

Related Hubs

FAQ

What is an AGEX bundle?

An AGEX bundle is a secure, encrypted file container used for safe data transmission.

Does this tool decrypt my AGEX bundle?

No, this tool only reads the bundle metadata to generate user-facing instructions on how the recipient can decrypt it.

Why should I include a verification public key?

Including a public key allows the recipient to verify the bundle's signature and confirm it was sent by you.

What format is the generated share note?

The tool outputs a clean, shareable HTML page that you can send directly to your recipient.

Is my sensitive data exposed when uploading the bundle?

No, the tool only processes the bundle structure to build the instruction guide without exposing the encrypted payload.

API Documentation

Request Endpoint

POST /en/api/tools/agex-secure-share-note

Request Parameters

Parameter Name Type Required Description
bundleFile file (Upload required) Yes -
verificationPublicKey textarea No -
recipientNote textarea No -

File type parameters need to be uploaded first via POST /upload/agex-secure-share-note to get filePath, then pass filePath to the corresponding file field.

Response Format

{
  "result": "
Processed HTML content
", "error": "Error message (optional)", "message": "Notification message (optional)", "metadata": { "key": "value" } }
HTML: HTML

AI MCP Documentation

Add this tool to your MCP server configuration:

{
  "mcpServers": {
    "elysiatools-agex-secure-share-note": {
      "name": "agex-secure-share-note",
      "description": "Generate a plain-language share note for an AGEX bundle so recipients know how to decrypt and verify it safely",
      "baseUrl": "https://elysiatools.com/mcp/sse?toolId=agex-secure-share-note",
      "command": "",
      "args": [],
      "env": {},
      "isActive": true,
      "type": "sse"
    }
  }
}

You can chain multiple tools, e.g.: `https://elysiatools.com/mcp/sse?toolId=png-to-webp,jpg-to-webp,gif-to-webp`, max 20 tools.

Supports URL file links or Base64 encoding for file parameters.

If you encounter any issues, please contact us at [email protected]