Possible Duplicate:
How to work with big numbers in PHP?
i am developing a web app on RSA algorithm. as to make RSA more secure u have to use large numbers so here it goes.... so first i convert the alphabets (all A to Z) into their ASCII codes, i m using ord().
but the problem is the function ciphertext=m(pow)e*[mod n]
in which m (message which is a number) to the power e is to be calculated
now if ascii of a is 97 , and suppose e=57
then 97 to the power 57 will be huge....
i have a 32 bit laptop.
so plz tell the right data type which i should use thanks.