Hakanai (儚い)
A minimalist one-time secret sharing service built on zero-knowledge principles.
Philosophy
Hakanai embodies the Japanese concept of transience - secrets that exist only for a moment before vanishing forever. No accounts, no tracking, no persistence. Just ephemeral data transfer with mathematical privacy guarantees.
Core Principles
- Zero-Knowledge: The server never sees your data. All encryption happens client-side.
- Single View: Secrets self-destruct after one access. No second chances.
- No Metadata: We store only encrypted bytes and an ID. Nothing else.
- Minimalist: One function only - share secrets that disappear.
How It Works
- Your client (CLI or browser) encrypts the secret locally
- Sends only the ciphertext to our server
- You share the link with the decryption key (either embedded in URL or separately)
- Recipient views once, then it's gone forever
Enhanced Security Mode
With the --separate-key option, Hakanai provides enhanced security by separating the secret URL from the decryption key:
- Traditional mode: One URL contains both secret ID and key (
/s/uuid#key) - Separate key mode: Secret URL (
/s/uuid) and key are provided separately - Defense in depth: Share URL and key through different communication channels
- Reduced attack surface: No cryptographic material in any single URL
Security Model
We implement true client-side encryption - your secrets are encrypted before leaving your device and decrypted only after retrieval. The server is just a temporary dead drop that forgets everything.
Note: This project focuses on the application-layer encryption. Transport security (HTTPS/TLS) should be handled by a reverse proxy or load balancer in front of the server.
Built for those who believe privacy isn't about having something to hide - it's about having something to protect.
Installation
Prerequisites
- Rust 2024 edition or later
- Redis server (for backend storage)
- Standard Rust toolchain (
cargo,rustc)
From Source
# Clone the repository
# Build all components
# Binaries will be in:
# - ./target/release/hakanai (CLI)
# - ./target/release/hakanai-server (Server)
Using Docker Compose
The easiest way to run Hakanai is with Docker Compose, which includes both the server and a Valkey (Redis-compatible) database:
# Start the services
# The server will be available at http://localhost:8080
# View logs
# Stop the services
# Stop and remove volumes (clears all stored secrets)
For production deployment, create your own docker-compose.override.yml:
services:
hakanai:
environment:
HAKANAI_ALLOW_ANONYMOUS: "true"
HAKANAI_ANONYMOUS_UPLOAD_SIZE_LIMIT: "64"
Usage
Server
# Start with default settings (port 8080, Redis on localhost)
# Admin token will be generated and logged on first startup
# Or with custom configuration
# Enable anonymous access (allows public secret creation with size limits)
# Configure anonymous size limits (humanized format)
# Enable admin token system for token management
# Production setup with admin token and monitoring
Token System:
- Admin token: Optional admin API access (use
--enable-admin-token) - User tokens: Auto-created on first startup with 30-day TTL
- Anonymous access: Optional public access with size limits
- Token recovery: Use
--reset-admin-tokenor--reset-default-tokenflags
CLI
Sending a Secret
# Send from stdin (default: 24 hour expiration)
|
# Send from a file
# Send with custom TTL
|
# Send to custom server
|
# Send with authentication token (required if server has token whitelist)
|
# Generate separate key for enhanced security (key and URL shared via different channels)
|
# Output:
# Secret sent successfully!
#
# Secret link: https://hakanai.example.com/s/uuid
# Key: base64-encoded-key
# Combine options
Retrieving a Secret
# Get using the full URL returned by send
# Get using the short link format
# Get using separate key (when --separate-key was used)
# Secret is displayed and immediately destroyed on server
Creating User Tokens (Admin Only)
# Create a user token with admin privileges
# Create token with humanized size limits
# Create token with custom server and settings
Size Format Options:
- Plain numbers: bytes (e.g.,
1024) - 'k' suffix: kilobytes (e.g.,
500k) - 'm' suffix: megabytes (e.g.,
1m) - Decimal values supported (e.g.,
1.5m,2.5k)
Note: You can also retrieve secrets using a web browser by visiting the server URL and pasting the secret link.
Web Interface
Hakanai now includes a web interface for users who prefer not to use the CLI:
- Visit the server root (e.g.,
https://hakanai.example.com/) to access the web interface - Create new secrets at
/create- supports both text and file uploads - Paste a hakanai URL to retrieve secrets directly in your browser
- The same zero-knowledge encryption is maintained - all encryption/decryption happens in your browser
- Dark/Light Mode Toggle: Automatic system preference detection with manual override
- Mobile-friendly responsive design
- Multi-language support (English and German) with automatic browser language detection
API Reference
📚 For complete API documentation, visit /docs on your running server.
The documentation is automatically generated from the OpenAPI specification, ensuring it always reflects the current API state. Both human-readable docs and machine-readable specs are kept in perfect sync.
POST /api/v1/secret
Create a new secret.
Headers:
Authorization: Bearer {token}(required if server has token whitelist)
Request:
Response:
Error Responses:
401 Unauthorized: Invalid or missing token when server requires authentication400 Bad Request: Invalid request body
GET /api/v1/secret/{id}
Retrieve a secret (one-time access).
Response:
200 OK: Plain text secret data404 Not Found: Secret doesn't exist or has expired410 Gone: Secret was already accessed by someone else
POST /api/v1/admin/tokens
Create user tokens (admin authentication required).
Headers:
Authorization: Bearer {admin-token}(required)
Request:
Response:
Error Responses:
401 Unauthorized: Invalid or missing admin token400 Bad Request: Invalid request body
GET /ready
Readiness check endpoint - returns 200 OK when the server is ready to accept requests.
GET /healthy
Health check endpoint - returns 200 OK when the server and all dependencies (Redis) are healthy.
Development
Project Structure
hakanai/
├── lib/ # Core library (client, crypto, models)
├── cli/ # Command-line interface
├── server/ # Actix-web server
└── Cargo.toml # Workspace configuration
Building
# Build entire workspace (includes TypeScript compilation and HTML generation)
# Build release version
# Build TypeScript client only (compiles .ts to .js)
# Clean TypeScript compiled files
# TypeScript type checking only (no compilation)
Testing
# Run all tests
# Run specific test
# Run TypeScript tests
# Run tests with coverage (if cargo-tarpaulin installed)
The project includes comprehensive test coverage with 200+ tests across all components.
Code Quality
# Format code
# Run linter (warnings as errors)
RUSTFLAGS="-Dwarnings"
# TypeScript compilation (automatically checks types)
Architecture
Hakanai implements a zero-knowledge architecture:
- Client-side encryption: All encryption/decryption happens in the client
- Server ignorance: Server only stores encrypted blobs with UUIDs
- Automatic destruction: Secrets self-destruct after first access or TTL
- No persistence: No logs, no backups, no recovery
Components
- hakanai-lib: Core library with encryption, client traits, and shared models
- hakanai (CLI): Command-line interface for sending and retrieving secrets
- hakanai-server: RESTful API server with Redis backend
- TypeScript Client: Browser-based client with the same zero-knowledge architecture
Security & Deployment Notes
Security Architecture
Hakanai follows a separation of concerns security model:
- Application Layer: Zero-knowledge encryption, secure token handling, input validation
- Infrastructure Layer: TLS termination, rate limiting, DDoS protection (handled by reverse proxy)
Production Deployment
The server is designed to run behind a reverse proxy (nginx, Caddy, etc.) which handles:
- TLS termination and HTTPS enforcement
- Rate limiting and DDoS protection
- Request filtering and header sanitization
- Response compression (gzip, etc.) for improved performance
For production deployments:
- Always use authentication tokens to prevent unauthorized secret creation
- Configure reverse proxy for TLS, rate limiting, and security headers
- Monitor server logs (structured logging with tracing middleware included)
- Set appropriate Redis memory limits and eviction policies
- Enable OpenTelemetry for comprehensive observability
Security Audit Results
- ✅ Comprehensive security audit completed (2025-07-17)
- ✅ Overall security rating: A- (production ready with minor improvements)
- ✅ No Critical or High priority vulnerabilities - only 3 low-priority operational improvements remain
- ✅ Production ready with proper infrastructure configuration
- ✅ Zero-knowledge architecture properly implemented with strong cryptographic foundations
- ✅ Comprehensive memory safety with automatic zeroization and secure cleanup
Configuration
Server Environment Variables
HAKANAI_PORT: Server port (default: 8080)HAKANAI_LISTEN_ADDRESS: Bind address (default: 0.0.0.0)HAKANAI_REDIS_DSN: Redis connection string (default: redis://127.0.0.1:6379/)HAKANAI_UPLOAD_SIZE_LIMIT: Maximum upload size (default: 10m, supports humanized format like 1m, 500k, 1024)HAKANAI_ALLOW_ANONYMOUS: Allow anonymous access (default: false)HAKANAI_ANONYMOUS_UPLOAD_SIZE_LIMIT: Upload size limit for anonymous users (default: 32k, supports humanized format)HAKANAI_ENABLE_ADMIN_TOKEN: Enable admin token system (default: false)HAKANAI_CORS_ALLOWED_ORIGINS: Comma-separated allowed CORS origins (default: none)HAKANAI_MAX_TTL: Maximum allowed TTL in seconds (default: 604800, 7 days)OTEL_EXPORTER_OTLP_ENDPOINT: OpenTelemetry collector endpoint (optional, enables OTEL when set)
Server Command-line Options
--port: Override the port number--listen: Override the listen address--redis-dsn: Override the Redis connection string--allow-anonymous: Allow anonymous access without authentication--anonymous-size-limit: Set upload size limit for anonymous users (supports humanized format like 32k, 1m)--enable-admin-token: Enable admin token system for token management--reset-admin-token: Force regenerate admin token (requires --enable-admin-token)--reset-user-tokens: Clear all user tokens and create new default token
Security Features
- Zero-knowledge architecture with client-side AES-256-GCM encryption
- One-time access with automatic secret deletion
- Token-based authentication with SHA-256 hashing
- Security headers (X-Frame-Options, X-Content-Type-Options, HSTS)
- Restrictive CORS policy requiring explicit origin allowlist
Observability
When OTEL_EXPORTER_OTLP_ENDPOINT is set, Hakanai exports:
- Traces: Distributed tracing for all HTTP requests
- Metrics: Application performance and usage metrics
- Logs: Structured logs with trace correlation
The server automatically detects service name and version from Cargo metadata and includes resource information about the OS, process, and runtime environment.
Contributing
Contributions are welcome! Please:
- Fork the repository
- Create a feature branch
- Write tests for new functionality
- Ensure all tests pass and clippy is happy
- Submit a pull request
License
Licensed under MIT license.