Click here to Skip to main content
15,879,535 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I do work on cryptography using rsa algorithm in c#
i use Bigintegar datatype my dcrypted string is in the form of bigintegar how i convert it in the form of string
Posted
Comments
Kenneth Haugland 6-Oct-12 12:15pm    
Using the method BigInteger.ToString() ?
Scott Clayton 6-Oct-12 12:16pm    
That will depend on how the string is represented in the number. For instance, would the number 101112 = "jkl" (two digits correspond to a letter), or do every 8 bits represent a byte like 596F = "Yo"? Without knowing the format we can't really help you convert it.

1 solution

Try this,

BigInteger originalNumber = BigInteger.Pow(UInt64.MaxValue, Byte.MaxValue);
string generalString = originalNumber.ToString("G");
string roundTripString = originalNumber.ToString("R");


Follow the msdn link
http://msdn.microsoft.com/en-us/library/dd268260.aspx[^]

Hope this helps.

cheers
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900