From 1a5afe8f567866981ac0cd0a75a95503064d33c2 Mon Sep 17 00:00:00 2001 From: geeksville Date: Sat, 9 May 2020 16:14:30 -0700 Subject: [PATCH] add notes about crypto --- mesh.proto | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/mesh.proto b/mesh.proto index abb7372..616abe7 100644 --- a/mesh.proto +++ b/mesh.proto @@ -214,6 +214,12 @@ message SubPacket { // MeshPacket). message MeshPacket { + /** + The sending node number. + + Note: Our crypto implementation uses this field as well. See + docs/software/crypto.md for details. + */ int32 from = 1; /** @@ -239,6 +245,9 @@ message MeshPacket { ID only needs to be unique on a _per sender_ basis. And it only needs to be unique for a few minutes (long enough to last for the length of any ACK or the completion of a mesh broadcast flood). + + Note: Our crypto implementation uses this id as well. See + docs/software/crypto.md for details. */ uint32 id = 6;