1
0
Fork 0
mirror of https://github.com/anyproto/docs.git synced 2025-06-08 05:47:05 +09:00

Update how-we-keep-your-data-safe.md

This commit is contained in:
Meet Mangukiya 2023-07-23 18:38:18 +05:30 committed by GitHub
parent a956d68f3c
commit 096ec10479
Signed by: github
GPG key ID: 4AEE18F83AFDEB23

View file

@ -21,7 +21,7 @@ Here are some technical details on encryption and data storage:
* Anytype stores the history of changes for each object youve created. * Anytype stores the history of changes for each object youve created.
* Every objects change has 2 encryption layers with different keys. * Every objects change has 2 encryption layers with different keys.
* The first layer is used to connect changes within an object, e.g. "all this encrypted data belongs to the object with id \<abc>". * The first layer is used to connect changes within an object, e.g. "all this encrypted data belongs to the object with id \<abc>".
* The second layer is used to encrypt the actual data. We using AES with stream encryption with CFB mode. * The second layer is used to encrypt the actual data. We use AES with stream encryption with CFB mode.
* When you create a new change for an object, we periodically send it to our backup node (with only the first-layer key). More info about sync [here](https://app.gitbook.com/o/Ssa9i5QAuI6HhV4jXCLv/s/JbcKxgThRdSa4vZyLbvH/faqs/syncing-and-p2p). * When you create a new change for an object, we periodically send it to our backup node (with only the first-layer key). More info about sync [here](https://app.gitbook.com/o/Ssa9i5QAuI6HhV4jXCLv/s/JbcKxgThRdSa4vZyLbvH/faqs/syncing-and-p2p).
* Anytype backup nodes have access to the first layer key, so it can group changes for the object and send them in one pack when you want to restore your data. * Anytype backup nodes have access to the first layer key, so it can group changes for the object and send them in one pack when you want to restore your data.
* Anytype backup nodes HAVE NO access to the second layer key, so it cant read the actual changes to the data. * Anytype backup nodes HAVE NO access to the second layer key, so it cant read the actual changes to the data.