decodeBigInt static method

BigInt decodeBigInt(
  1. List<int> bytes
)

Decode a BigInt from bytes in big-endian encoding.

Implementation

static BigInt decodeBigInt(List<int> bytes) {
  var result = BigInt.from(0);
  for (var i = 0; i < bytes.length; i++) {
    result += BigInt.from(bytes[bytes.length - i - 1]) << (8 * i);
  }
  return result;
}