Android PRNG
Android JAVA BigInteger Class BigInteger firstValue = new BigInteger ( "99607" ) ; BigInteger secondValue = new BigInteger ( "98563" ) ; BigInteger resultValue = firstValue . mod ( secondValue ) ; BigInteger firstValue = new BigInteger ( "5" ) ; BigInteger firstResultValue = firstValue . shiftLeft ( 3 ) ; //40 Android JAVA