From 9ecba820b90c85bd927fbb18fabe0f6fc8f97141 Mon Sep 17 00:00:00 2001 From: Nikos Mavrogiannopoulos Date: Thu, 2 Sep 2010 23:20:09 +0200 Subject: Added a FIXME on the used types. --- libtommath/tommath.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/libtommath/tommath.h b/libtommath/tommath.h index 491bcc2..6653f55 100644 --- a/libtommath/tommath.h +++ b/libtommath/tommath.h @@ -64,6 +64,10 @@ extern "C" { * At the very least a mp_digit must be able to hold 7 bits * [any size beyond that is ok provided it doesn't overflow the data type] */ + +/* FIXME: This can be improved, but might require to use a 64bit division + * on 32bit machines and an 128bit on 64. + */ #if BITS_PER_LONG <= 32 typedef uint16_t mp_digit; -- cgit