List of utility methods to do BigInteger Create
BigInteger | getUnsignedBigInteger(byte[] data, int start, int length) Returns a positive BigInteger from the given bytes. if (length == 0) { return BigInteger.ZERO; byte[] value = new byte[length + 1]; System.arraycopy(data, start, value, 1, length); return new BigInteger(value); |