rlphash function

Uint8List rlphash(
  1. dynamic a
)

Creates SHA-3 hash of the RLP encoded version of the input.

Implementation

Uint8List rlphash(dynamic a) {
  a = bytes.toBuffer(a);
  return keccak(Rlp.encode(a));
}