Android Utililty Methods BigInteger Create

List of utility methods to do BigInteger Create

Description

The list of methods to do BigInteger Create are organized into topic(s).

Method

BigIntegergetUnsignedBigInteger(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);