package rlp import ( "encoding/binary" "math/bits" ) // General design: // - no io.Writer, because it's incompatible with binary.BigEndian functions and can't be used as temporary buffer // // General rules: // - pure functions (to calculate prefix len) are fast. it's ok to call them multiple times during encoding of large object for readability. // - func ListPrefixLen(dataLen int) int { if dataLen >= 56 { return 1 + (bits.Len64(uint64(dataLen))+7)/8 } return 1 } func EncodeListPrefix(dataLen int, to []byte) { if dataLen >= 56 { _ = to[9] beLen := (bits.Len64(uint64(dataLen)) + 7) / 8 binary.BigEndian.PutUint64(to[1:], uint64(dataLen)) to[8-beLen] = 247 + byte(beLen) copy(to, to[8-beLen:9]) return } to[0] = 192 + byte(dataLen) } func U64Len(i uint64) int { if i > 128 { return 1 + (bits.Len64(i)+7)/8 } return 1 } func EncodeU64(i uint64, to []byte) { if i > 128 { l := (bits.Len64(i) + 7) / 8 to[0] = 128 + byte(l) binary.BigEndian.PutUint64(to[1:], i) copy(to[1:], to[1+8-l:1+8]) return } if i == 0 { to[0] = 128 return } to[0] = byte(i) } func EncodeString(s []byte, to []byte) { switch { case len(s) > 56: beLen := (bits.Len(uint(len(s))) + 7) / 8 binary.BigEndian.PutUint64(to[1:], uint64(len(s))) _ = to[beLen+len(s)] to[8-beLen] = byte(beLen) + 183 copy(to, to[8-beLen:9]) copy(to[1+beLen:], s) case len(s) == 0: to[0] = 128 case len(s) == 1: _ = to[1] if s[0] >= 128 { to[0] = 129 } copy(to[1:], s) default: // 1