Documentation
Getting Started
Welcome to the IronLockBox documentation. This guide will help you set up your private digital vault and understand our zero-knowledge security architecture.
Vault Setup
Initialize your master key and secure environment.
Storage Packs
Understanding permanent storage expansions.
Security First
IronLockBox is built on the principle of absolute digital sovereignty. Unlike traditional cloud providers, we do not manage your keys. Your data is encrypted locally before being transmitted to our high-redundancy nodes.
// Example encryption verification
const vault = await IronLock.initialize({
encryption: 'AES-256-GCM',
mode: 'zero-knowledge'
});
await vault.upload(file, {
metadata: false,
permanent: true
});Key Concepts
- Permanent Ownership: Storage packs are one-time payments.
- Atomic Encrypted Units: Files are broken into encrypted blocks.
- Zero Metadata: We store no searchable metadata by default.