Blog signature must cover timestamp

akwizgran
2015-04-24 15:54:39 +00:00
parent 0908b7b3b9
commit d9c81ea531

@@ -12,4 +12,4 @@ Each object consists of a type, length and value. The first four bits give the t
* **7: Dictionary** - Length is 0. The value consists of zero or more key-value pairs followed by an end marker. The keys are strings and the values may be of any type.
* **8: End** - Length is 0, value is empty. Marks the end of a list or dictionary.
All integers are big-endian two's complement, floating point numbers are IEEE 754, and strings are UTF-8. Integers must be represented using the minimum number of bytes.
All integers are big-endian two's complement, floating point numbers are IEEE 754, and strings are UTF-8. Integers must be represented using the minimum number of bytes. A dictionary's keys must all be different and may not be empty.