FIXED32_BIG uses big-endian encoding of the length as a 32 bit integer
FIXED32_LITTLE uses little-endian encoding of the length as a 32 bit integer
FIXED64_BIG uses big-endian encoding of the length as a 64 bit integer
FIXED64_LITTLE uses little-endian encoding of the length as a 64 bit integer
NO_PREFIX don't include any length info
REQUIRE_32_BYTES is like NONE, but will fail if the input is not exactly 32 bytes (sha256 output)
REQUIRE_64_BYTES is like NONE, but will fail if the input is not exactly 64 bytes (sha512 output)
VAR_PROTO uses protobuf (and go-amino) varint encoding of the length
VAR_RLP uses rlp int encoding of the length
LengthOp defines how to process the key and value of the LeafOp to include length information. After encoding the length with the given algorithm, the length will be prepended to the key and value bytes. (Each one with it's own encoded length)
Generated
from enum ics23.LengthOp