# Post-Quantum Secure

Autonomi is designed for a post-quantum threat model, but it does not use the same cryptography for everything. Stored data is protected by self-encryption on your own device, while node identity and network connections use explicitly post-quantum cryptography.

## What this means

Post-quantum security means the network does not rely only on classical public-key cryptography for node identity and connection security. That matters because large quantum computers would weaken some cryptographic systems that are still used widely on today's Internet.

For you, that means:

1. Your files are protected by self-encryption before they leave your device.
2. The connections between clients and nodes are protected by post-quantum cryptography.

This means Autonomi is designed to protect your data against quantum-era threats, both at rest and while it moves across the network.

## Why Autonomi separates these layers

Stored data and live network connections face different risks, so they are protected differently. Self-encryption keeps uploaded content unreadable to the network itself using modern symmetric encryption and hashing. Post-quantum transport security protects node identity and the secure connections used to move data around.

That means the network can verify who is participating and establish secure connections without exposing readable content in transit or at rest.

## Under the hood

Autonomi's transport layer uses `ML-KEM-768` for key exchange and `ML-DSA-65` for signatures, with no classical fallback.

Content protection follows a different path. Files are self-encrypted on the client using `ChaCha20-Poly1305`, with keys and addresses derived using `BLAKE3`. These are not the same as the network's explicit post-quantum identity and transport algorithms, but they are also not vulnerable in the same way as classical public-key cryptography.

## Related pages

* [Everything's Encrypted](/introduction/what-is-autonomi/everythings-encrypted.md)
* [Self-Encryption](/how-it-works/encryption-and-authentication/self-encryption.md)
* [Post-Quantum Identity & Credentials](/how-it-works/encryption-and-authentication/multisig-credentials.md)


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.autonomi.com/introduction/what-is-autonomi/post-quantum-secure.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
