'Is there any documentation around verifying that the data sent is the same data received by Firestore (.set)?
Is there an implicit checksumming or anything Google Firestore does automatically to ensure the data sent from an endpoint is the same data that arrives in the Firestore Database? This is not about security rules. This is verifying the data sent from an authorized source is not corrupted or corroded in any way between endpoints.
Solution 1:[1]
@kwsp's hunch was on the right track.
As per https://cloud.google.com/firestore/docs/server-side-encryption, Firestore uses TLS which you can read about the data integrity here:
https://en.wikipedia.org/wiki/Transport_Layer_Security#Data_integrity
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|---|
| Solution 1 | thenry |
