bmax[i] = bx[k];
bmin[i] = br[k];
}
BigInteger bigintMax = new BigInteger(1,bmax);
BigInteger bigintMin = new BigInteger(1,bmin);
return bigintMax.longValue() - bigintMin.longValue() + 1;
}
byte[] bn = new BigInteger(1,bw).toByteArray();
byte[] bmax = new byte[4];
byte[] bmin = new byte[4];
int p = bx.length > 4 ? 1 : 0;