Hello.
How to perform transitive conversion from .toByteArray() to BigInteger ? By transitive I mean someBigInteger.equals(new BigInteger(someBigInteger.toByteArray())). I can't see any constructor that does accept number[] nor Buffer. It accept just number or string. How to convert byteArray to string so it is transitive and acceptable by BigInteger constructor ?