Hi,<br><br>I'm working with big integers in my RSA implementation. How can I get the raw data (char array) from a BigInteger instance?<br>For example, let's say that a BigInteger has been initialized with the following hexadecimal bytes 08 09 0A 0B 0C 0D. How can I reference/copy this data from the instance into a char* variable? I don't want the data represented as text in a std::string, I just want the raw bytes which constitute the integer, just like the method toByteArray() in Java's BigInteger class.<br>
<br>Thanks.<br><br>/Tommy<br>