added content_id field to control message integrity (TBD how)

This commit is contained in:
Luxferre
2024-10-26 20:22:10 +03:00
parent 88e0ee7c60
commit d8b658a92b
2 changed files with 19 additions and 6 deletions
+1 -1
View File
@@ -133,7 +133,7 @@ This algorithm must be implemented by every station to generate message IDs:
1. Calculate SHA256 of the message in the Node-to-Point format as binary data.
2. Calculate Base64 of the resulting binary hash sum.
3. Truncate to the first 20 characters.
4. Replace all occurrences of + or - with A, and / or _ with Z.
4. Replace all occurrences of + or - with A, and / or _ with z.
5. The result of these operations is your ii message ID.
Implementation notes