
AIOZ Storage encryption is built around a passphrase that only you control, one AIOZ's own documentation says the company never stores. Every bucket gets its own passphrase, and that passphrase, not an account password, is what actually protects your data. Whether that also means AIOZ can never see your data at all depends on which of its two encryption modes you use, a distinction other S3-compatible storage explainers tend to skip. This article covers the exact key derivation chain, both encryption modes and how they differ, and where the documented gaps in AIOZ's own security model sit.
TL;DR: AIOZ Storage encrypts objects with AES-GCM under a key chain rooted in a BIP39 passphrase that AIOZ never stores. By default you get server-side encryption; for true end-to-end encryption you run AIOZ's self-hosted gateway yourself.
It means AIOZ Storage's own documentation states plainly, on two separate pages, that the company does not have or save your bucket's encryption passphrase. Without that passphrase, the files in the bucket cannot be decrypted by anyone who doesn't hold it, AIOZ included, once the passphrase is out of AIOZ's hands. That is a real, specific, verifiable claim about the passphrase itself.
It is a narrower claim than "AIOZ can never see your data," though, and the two get conflated more often than they should. Whether AIOZ's infrastructure ever touches your plaintext depends on which encryption mode you use, covered later in this article: end-to-end mode is architected so the server never receives it; server-side mode, the default, has the server decrypting data on your behalf when it serves a request. AIOZ's docs describe the passphrase-non-retention guarantee clearly. They do not spell out with the same clarity how that guarantee interacts with the server-side path, so this article treats that specific mechanism as undocumented rather than assuming the strongest possible reading.
A passphrase you lose is not recoverable by a support ticket regardless of mode. A passphrase an attacker steals is the only thing standing between them and your bucket. Everything below is about how that one passphrase turns into the actual encryption keys protecting every object you upload.
When you upload your first object, AIOZ Storage generates a bucket passphrase from the BIP39 wordlist, the same standard word list used to generate recovery phrases for crypto wallets. You can accept the auto-generated phrase, click refresh for a new one, write your own, or download it as a text file for backup. A wordlist passphrase is also easier to write down correctly and harder to mistype than a random hex string, while still carrying enough entropy to act as a real encryption secret.
Two credentials matter here, and it is easy to conflate them since AIOZ's own docs never explicitly contrast the two. Your account password (minimum 8 characters) logs you into the dashboard. Your bucket passphrase is the separate secret that decrypts your data. Losing the first is a password reset. Losing the second, with no backup, means the bucket's contents are gone for good, since AIOZ has no copy to restore from.
AIOZ Storage's documentation names AES-GCM as the cipher used to encrypt object data, and describes a hierarchical, one-directional key derivation chain rooted in that bucket passphrase (called the Root Secret, S0, in the technical docs). The chain works like this: a component key K0 is derived from S0, a new secret S1 is generated by hashing S0 together with a component identifier C1, a key K1 is derived from S1, and the encryption of C1 itself (E1) is produced by encrypting C1 under K0.
The important property is direction. A key derived further down the chain can decrypt what came before it, but that ability does not run in reverse. That direction is what makes it possible to hand out narrower decryption capability for specific objects or sub-users without exposing the Root Secret itself, the same logic behind hierarchical deterministic wallets in cryptocurrency, applied to object storage instead of coins. AIOZ's docs describe the property; they do not spell out this specific use case, so read it as a structural implication rather than a named feature. AIOZ's docs do not disclose a key length for the AES-GCM implementation, so treat that detail as undocumented rather than assuming a specific bit strength.
AIOZ Storage supports two distinct encryption modes, and by default you are using the first one. In server-side encryption, your data is encrypted as soon as AIOZ's server receives it, and decrypted on that same server before being sent back to you. AIOZ's own FAQ confirms this is the default: asked directly whether AIOZ Storage uses server-side or end-to-end encryption, the answer is server-side, with end-to-end available if you build a self-hosted gateway.
In end-to-end encryption, both steps happen on your side instead. Encryption occurs before data ever leaves your machine, and decryption happens only after it arrives back, which means AIOZ's servers only ever see ciphertext. The credential that makes this possible is the access grant, the same artifact that carries your read, write, list, and delete permissions, encrypted at rest using your S3 Access ID so that only your own client can unlock it.
The tradeoff is direct: server-side is the default because it requires no extra setup on your end. End-to-end removes AIOZ's servers from the decryption path entirely, at the cost of running additional infrastructure yourself. AIOZ's docs describe the two modes by where encryption and decryption physically happen (server versus client) without spelling out exactly how the bucket passphrase interacts with the server-side path, so treat that specific mechanism as undocumented rather than assuming it works the same way as the end-to-end flow.
To get end-to-end encryption, AIOZ's docs point you to two separate paths: use the AIOZ Storage CLI directly, or deploy AIOZ's self-hosted gateway (source published on GitHub as w3s-gateway), so encryption and decryption happen inside your own environment before anything touches the network. Setting up the gateway is three commands: gw setup to initialize it, gw server to run it, and gw add [access grant] to connect it to an access grant generated from your AIOZ Storage account.
This is aimed at teams with real end-to-end encryption requirements, not casual users. AIOZ's documentation does not publish a Docker image, port list, or config file schema for the gateway, so plan on reading the w3s-gateway source on GitHub if you need operational detail beyond the three-command quickstart. What the gateway buys you is control: your organization holds the only environment where plaintext data and decryption keys ever meet.
Being direct about the gaps matters more here than in most feature explainers, since encryption claims are exactly the kind of thing worth verifying rather than taking on faith. AIOZ Storage's documentation does not publish an AES key length, so do not assume AES-256 just because it is common elsewhere. It does not publish a replication factor, node count, or geographic distribution for how encrypted data is spread across the network, only that AIOZ DePIN "inherently supports replication by default." And access grant revocation is currently all-or-nothing: revoking a primary access grant kills every child grant derived from it, with no way yet to revoke a single child individually. AIOZ's own docs list granular revocation as a planned future release, not a shipped capability, so do not treat it as available today.
None of these gaps contradict the passphrase-non-retention guarantee described above, but they are the honest boundary of what AIOZ currently documents. If your use case depends on a specific key length, a specific replication guarantee, or fine-grained revocation, verify directly against AIOZ's current docs before you build on an assumption.
Does AIOZ Storage use server-side or end-to-end encryption by default?
Server-side encryption is the default. AIOZ's own FAQ states this directly, with end-to-end encryption available only if you deploy the self-hosted gateway.
Can AIOZ recover my data if I lose my bucket passphrase?
No. AIOZ Storage's documentation states that AIOZ does not have or save your encryption passphrase, so a lost passphrase with no backup means the bucket's contents cannot be decrypted by anyone, including AIOZ.
What cipher does AIOZ Storage use to encrypt objects?
AES-GCM, according to AIOZ Storage's own encryption documentation. The specific key length is not disclosed in the public docs.
Why does my bucket passphrase look like a crypto wallet seed phrase?
Because it is generated from the BIP39 wordlist, the same standard used for wallet recovery phrases, chosen because word-based phrases are easier to write down accurately than random hex strings.
How do I get end-to-end encryption on AIOZ Storage instead of server-side?
Use the AIOZ Storage CLI directly, or deploy AIOZ's self-hosted gateway (w3s-gateway). The gateway's three setup commands are gw setup, gw server, and gw add [access grant].
Can I revoke just one derived access grant without affecting the others?
Not yet. Revoking a primary access grant currently revokes every child grant derived from it. AIOZ's documentation lists per-child revocation as a planned future release.
Does AIOZ Storage publish a replication factor for encrypted data?
No. The docs state that AIOZ DePIN supports replication by default but do not publish a specific replication factor, node count, or geographic distribution.

AIOZ Storage encryption runs on AES-GCM and a one-way key chain built from a BIP39 passphrase, so AIOZ never holds the keys to your data. Here is how it works.

Keeping files online is only one part of storage reliability. This post looks at durability, redundancy, and infrastructure design in modern storage systems.

S3 compatibility is more than an API label. This explainer looks at how familiar object storage patterns reduce adoption friction in modern and decentralized storage workflows.

We are excited to enter into a collaboration with the world's leading luxury phone brand VERTU, in a partnership that will enable this innovative company to leverage various solutions within the AIOZ Network to enhance the experience of its end-users. The METAVERTU 2, VERTU's luxury web3-focused phone that leverages blockchain technology and AI, will utilize the 80,000+ AIOZ DePIN nodes to power its storage, content delivery, and in the near future, its AI computation. AIOZ Network will also s

What is dTransfer? In today's fast-paced digital landscape, the ability to share large files quickly and securely is crucial for both individuals and businesses. Traditional file transfer applications have become indispensable tools in our daily digital interactions, facilitating everything from the exchange of critical business documents to the sharing of personal multimedia files. These applications have grown to be essential in various sectors including media, education, healthcare, and te

As 2024 becomes the "year of DePIN", we are excited to announce another collaboration that will see AIOZ Network infrastructure and tooling support budding developers and project teams in the industry. We're making access to DePIN tooling easy for Aptos developers, with the addition of AIOZ Network into the Aptos ecosystem. With AIOZ W3S (S3 compatible object storage), IPFS, VOD/streaming and web3 AI infrastructure all being unveiled this year, the budding Aptos developer community can now disc