static BigInt leBuff2int(Uint8List buf) { BigInt res = BigInt.zero; for (int i = 0; i < buf.length; i++) { final n = BigInt.from(buf[i]); res = res + (n << i * 8); } return res; }