show/hide this revision's text 3 Rollback to Revision 1
show/hide this revision's text 2 edited tags
show/hide this revision's text 1

Multiplication of very long integers.

Is there an algorithm for accurately multiplying two arbitrarily long integers together? The language I am working with is limited to 64-bit unsigned integer length (maximum integer size of 18446744073709551615). Realistically, I would like to be able to do this by breaking up each number, processing them somehow using the unsigned 64-bit integers, and then being able to put them back together in to a string (which would solve the issue of multiplied result storage).

Any ideas?