You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

300 lines
11 KiB

  1. # Encoding
  2. ## Amino
  3. Tendermint uses the proto3 derivative [Amino](https://github.com/tendermint/go-amino) for all data structures.
  4. Think of Amino as an object-oriented proto3 with native JSON support.
  5. The goal of the Amino encoding protocol is to bring parity between application
  6. logic objects and persistence objects.
  7. Please see the [Amino
  8. specification](https://github.com/tendermint/go-amino#amino-encoding-for-go) for
  9. more details.
  10. Notably, every object that satisfies an interface (eg. a particular kind of p2p message,
  11. or a particular kind of pubkey) is registered with a global name, the hash of
  12. which is included in the object's encoding as the so-called "prefix bytes".
  13. We define the `func AminoEncode(obj interface{}) []byte` function to take an
  14. arbitrary object and return the Amino encoded bytes.
  15. ## Byte Arrays
  16. The encoding of a byte array is simply the raw-bytes prefixed with the length of
  17. the array as a `UVarint` (what proto calls a `Varint`).
  18. For details on varints, see the [protobuf
  19. spec](https://developers.google.com/protocol-buffers/docs/encoding#varints).
  20. For example, the byte-array `[0xA, 0xB]` would be encoded as `0x020A0B`,
  21. while a byte-array containing 300 entires beginning with `[0xA, 0xB, ...]` would
  22. be encoded as `0xAC020A0B...` where `0xAC02` is the UVarint encoding of 300.
  23. ## Public Key Cryptography
  24. Tendermint uses Amino to distinguish between different types of private keys,
  25. public keys, and signatures. Additionally, for each public key, Tendermint
  26. defines an Address function that can be used as a more compact identifier in
  27. place of the public key. Here we list the concrete types, their names,
  28. and prefix bytes for public keys and signatures, as well as the address schemes
  29. for each PubKey. Note for brevity we don't
  30. include details of the private keys beyond their type and name, as they can be
  31. derived the same way as the others using Amino.
  32. All registered objects are encoded by Amino using a 4-byte PrefixBytes that
  33. uniquely identifies the object and includes information about its underlying
  34. type. For details on how PrefixBytes are computed, see the [Amino
  35. spec](https://github.com/tendermint/go-amino#computing-the-prefix-and-disambiguation-bytes).
  36. In what follows, we provide the type names and prefix bytes directly.
  37. Notice that when encoding byte-arrays, the length of the byte-array is appended
  38. to the PrefixBytes. Thus the encoding of a byte array becomes `<PrefixBytes> <Length> <ByteArray>`. In other words, to encode any type listed below you do not need to be
  39. familiar with amino encoding.
  40. You can simply use below table and concatenate Prefix || Length (of raw bytes) || raw bytes
  41. ( while || stands for byte concatenation here).
  42. | Type | Name | Prefix | Length | Notes |
  43. | ------------------ | ----------------------------- | ---------- | -------- | ----- |
  44. | PubKeyEd25519 | tendermint/PubKeyEd25519 | 0x1624DE64 | 0x20 | |
  45. | PubKeySecp256k1 | tendermint/PubKeySecp256k1 | 0xEB5AE987 | 0x21 | |
  46. | PrivKeyEd25519 | tendermint/PrivKeyEd25519 | 0xA3288910 | 0x40 | |
  47. | PrivKeySecp256k1 | tendermint/PrivKeySecp256k1 | 0xE1B0F79B | 0x20 | |
  48. | PubKeyMultisigThreshold | tendermint/PubKeyMultisigThreshold | 0x22C1F7E2 | variable | |
  49. ### Example
  50. For example, the 33-byte (or 0x21-byte in hex) Secp256k1 pubkey
  51. `020BD40F225A57ED383B440CF073BC5539D0341F5767D2BF2D78406D00475A2EE9`
  52. would be encoded as
  53. `EB5AE98721020BD40F225A57ED383B440CF073BC5539D0341F5767D2BF2D78406D00475A2EE9`
  54. ### Addresses
  55. Addresses for each public key types are computed as follows:
  56. #### Ed25519
  57. First 20-bytes of the SHA256 hash of the raw 32-byte public key:
  58. ```
  59. address = SHA256(pubkey)[:20]
  60. ```
  61. NOTE: before v0.22.0, this was the RIPEMD160 of the Amino encoded public key.
  62. #### Secp256k1
  63. RIPEMD160 hash of the SHA256 hash of the OpenSSL compressed public key:
  64. ```
  65. address = RIPEMD160(SHA256(pubkey))
  66. ```
  67. This is the same as Bitcoin.
  68. ## Other Common Types
  69. ### BitArray
  70. The BitArray is used in block headers and some consensus messages to signal
  71. whether or not something was done by each validator. BitArray is represented
  72. with a struct containing the number of bits (`Bits`) and the bit-array itself
  73. encoded in base64 (`Elems`).
  74. ```go
  75. type BitArray struct {
  76. Bits int
  77. Elems []uint64
  78. }
  79. ```
  80. This type is easily encoded directly by Amino.
  81. Note BitArray receives a special JSON encoding in the form of `x` and `_`
  82. representing `1` and `0`. Ie. the BitArray `10110` would be JSON encoded as
  83. `"x_xx_"`
  84. ### Part
  85. Part is used to break up blocks into pieces that can be gossiped in parallel
  86. and securely verified using a Merkle tree of the parts.
  87. Part contains the index of the part in the larger set (`Index`), the actual
  88. underlying data of the part (`Bytes`), and a simple Merkle proof that the part is contained in
  89. the larger set (`Proof`).
  90. ```go
  91. type Part struct {
  92. Index int
  93. Bytes byte[]
  94. Proof byte[]
  95. }
  96. ```
  97. ### MakeParts
  98. Encode an object using Amino and slice it into parts.
  99. ```go
  100. func MakeParts(obj interface{}, partSize int) []Part
  101. ```
  102. ## Merkle Trees
  103. For an overview of Merkle trees, see
  104. [wikipedia](https://en.wikipedia.org/wiki/Merkle_tree)
  105. We use the RFC 6962 specification of a merkle tree, instantiated with sha256 as the hash function.
  106. Merkle trees are used throughout Tendermint to compute a cryptographic digest of a data structure.
  107. The differences between RFC 6962 and the simplest form a merkle tree are that:
  108. 1) leaf nodes and inner nodes have different hashes.
  109. This is to prevent a proof to an inner node, claiming that it is the hash of the leaf.
  110. The leaf nodes are `SHA256(0x00 || leaf_data)`, and inner nodes are `SHA256(0x01 || left_hash || right_hash)`.
  111. 2) When the number of items isn't a power of two, the left half of the tree is as big as it could be.
  112. (The smallest power of two less than the number of items) This allows new leaves to be added with less
  113. recomputation. For example:
  114. ```
  115. Simple Tree with 6 items Simple Tree with 7 items
  116. * *
  117. / \ / \
  118. / \ / \
  119. / \ / \
  120. / \ / \
  121. * * * *
  122. / \ / \ / \ / \
  123. / \ / \ / \ / \
  124. / \ / \ / \ / \
  125. * * h4 h5 * * * h6
  126. / \ / \ / \ / \ / \
  127. h0 h1 h2 h3 h0 h1 h2 h3 h4 h5
  128. ```
  129. ### Simple Merkle Root
  130. The function `MerkleRoot` is a simple recursive function defined as follows:
  131. ```go
  132. func MerkleRootFromLeafs(leafs [][]byte) []byte{
  133. switch len(items) {
  134. case 0:
  135. return nil
  136. case 1:
  137. return leafHash(leafs[0]) // SHA256(0x00 || leafs[0])
  138. default:
  139. k := getSplitPoint(len(items)) // largest power of two smaller than items
  140. left := MerkleRootFromLeafs(items[:k])
  141. right := MerkleRootFromLeafs(items[k:])
  142. return innerHash(left, right) // SHA256(0x01 || left || right)
  143. }
  144. }
  145. ```
  146. Note: we will abuse notion and invoke `SimpleMerkleRoot` with arguments of type `struct` or type `[]struct`.
  147. For `struct` arguments, we compute a `[][]byte` containing the hash of each
  148. field in the struct, in the same order the fields appear in the struct.
  149. For `[]struct` arguments, we compute a `[][]byte` by hashing the individual `struct` elements.
  150. ### Simple Merkle Proof
  151. Proof that a leaf is in a Merkle tree consists of a simple structure:
  152. ```golang
  153. type SimpleProof struct {
  154. Aunts [][]byte
  155. }
  156. ```
  157. Which is verified using the following:
  158. ```golang
  159. func (proof SimpleProof) Verify(index, total int, leafHash, rootHash []byte) bool {
  160. computedHash := computeHashFromAunts(index, total, leafHash, proof.Aunts)
  161. return computedHash == rootHash
  162. }
  163. func computeHashFromAunts(index, total int, leafHash []byte, innerHashes [][]byte) []byte{
  164. assert(index < total && index >= 0 && total > 0)
  165. if total == 1{
  166. assert(len(proof.Aunts) == 0)
  167. return leafHash
  168. }
  169. assert(len(innerHashes) > 0)
  170. numLeft := getSplitPoint(total) // largest power of 2 less than total
  171. if index < numLeft {
  172. leftHash := computeHashFromAunts(index, numLeft, leafHash, innerHashes[:len(innerHashes)-1])
  173. assert(leftHash != nil)
  174. return SimpleHashFromTwoHashes(leftHash, innerHashes[len(innerHashes)-1])
  175. }
  176. rightHash := computeHashFromAunts(index-numLeft, total-numLeft, leafHash, innerHashes[:len(innerHashes)-1])
  177. assert(rightHash != nil)
  178. return SimpleHashFromTwoHashes(innerHashes[len(innerHashes)-1], rightHash)
  179. }
  180. ```
  181. ### Simple Tree with Dictionaries
  182. The Simple Tree is used to merkelize a list of items, so to merkelize a
  183. (short) dictionary of key-value pairs, encode the dictionary as an
  184. ordered list of `KVPair` structs. The block hash is such a hash
  185. derived from all the fields of the block `Header`. The state hash is
  186. similarly derived.
  187. ### IAVL+ Tree
  188. Because Tendermint only uses a Simple Merkle Tree, application developers are expect to use their own Merkle tree in their applications. For example, the IAVL+ Tree - an immutable self-balancing binary tree for persisting application state is used by the [Cosmos SDK](https://github.com/cosmos/cosmos-sdk/blob/develop/docs/sdk/core/multistore.md)
  189. ## JSON
  190. ### Amino
  191. Amino also supports JSON encoding - registered types are simply encoded as:
  192. ```
  193. {
  194. "type": "<amino type name>",
  195. "value": <JSON>
  196. }
  197. ```
  198. For instance, an ED25519 PubKey would look like:
  199. ```
  200. {
  201. "type": "tendermint/PubKeyEd25519",
  202. "value": "uZ4h63OFWuQ36ZZ4Bd6NF+/w9fWUwrOncrQsackrsTk="
  203. }
  204. ```
  205. Where the `"value"` is the base64 encoding of the raw pubkey bytes, and the
  206. `"type"` is the amino name for Ed25519 pubkeys.
  207. ### Signed Messages
  208. Signed messages (eg. votes, proposals) in the consensus are encoded using Amino.
  209. When signing, the elements of a message are re-ordered so the fixed-length fields
  210. are first, making it easy to quickly check the type, height, and round.
  211. The `ChainID` is also appended to the end.
  212. We call this encoding the SignBytes. For instance, SignBytes for a vote is the Amino encoding of the following struct:
  213. ```go
  214. type CanonicalVote struct {
  215. Type byte
  216. Height int64 `binary:"fixed64"`
  217. Round int64 `binary:"fixed64"`
  218. BlockID CanonicalBlockID
  219. Timestamp time.Time
  220. ChainID string
  221. }
  222. ```
  223. The field ordering and the fixed sized encoding for the first three fields is optimized to ease parsing of SignBytes
  224. in HSMs. It creates fixed offsets for relevant fields that need to be read in this context.
  225. See [#1622](https://github.com/tendermint/tendermint/issues/1622) for more details.